mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
force sample for qcelp when not stored in mov, fix #968
Originally committed as revision 18374 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4bce3ba480
commit
17ad7b24c8
@ -1034,6 +1034,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
||||
#endif
|
||||
/* no ifdef since parameters are always those */
|
||||
case CODEC_ID_QCELP:
|
||||
// force sample rate for qcelp when not stored in mov
|
||||
if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
|
||||
st->codec->sample_rate = 8000;
|
||||
st->codec->frame_size= 160;
|
||||
st->codec->channels= 1; /* really needed */
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user