Browse Source

ogg/celt: do not set sample_fmt in the demuxer

tags/n0.9
Justin Ruggles 13 years ago
parent
commit
fc2dd2c7ac
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      libavformat/oggparsecelt.c

+ 0
- 1
libavformat/oggparsecelt.c View File

@@ -68,7 +68,6 @@ static int celt_header(AVFormatContext *s, int idx)
st->codec->sample_rate = sample_rate; st->codec->sample_rate = sample_rate;
st->codec->channels = nb_channels; st->codec->channels = nb_channels;
st->codec->frame_size = frame_size; st->codec->frame_size = frame_size;
st->codec->sample_fmt = AV_SAMPLE_FMT_S16;
st->codec->extradata = extradata; st->codec->extradata = extradata;
st->codec->extradata_size = 2 * sizeof(uint32_t); st->codec->extradata_size = 2 * sizeof(uint32_t);
if (sample_rate) if (sample_rate)


Loading…
Cancel
Save