Merge remote-tracking branch 'qatar/master'
* qatar/master: (29 commits) amrwb: remove duplicate arguments from extrapolate_isf(). amrwb: error out early if mode is invalid. h264: change underread for 10bit QPEL to overread. matroska: check buffer size for RM-style byte reordering. vp8: disable mmx functions with sse/sse2 counterparts on x86-64. vp8: change int stride to ptrdiff_t stride. wma: fix invalid buffer size assumptions causing random overreads. Windows Media Audio Lossless decoder rv10/20: Fix slice overflow with checked bitstream reader. h263dec: Disallow width/height changing with frame threads. rv10/20: Fix a buffer overread caused by losing track of the remaining buffer size. rmdec: Honor .RMF tag size rather than assuming 18. g722: Fix the QMF scaling r3d: don't set codec timebase. electronicarts: set timebase for tgv video. electronicarts: parse the framerate for cmv video. ogg: don't set codec timebase electronicarts: don't set codec timebase avs: don't set codec timebase wavpack: Fix an integer overflow ... Conflicts: libavcodec/arm/vp8dsp_init_arm.c libavcodec/fraps.c libavcodec/h264.c libavcodec/mpeg4videodec.c libavcodec/mpegvideo.c libavcodec/msmpeg4.c libavcodec/pnmdec.c libavcodec/qpeg.c libavcodec/rawenc.c libavcodec/ulti.c libavcodec/vcr1.c libavcodec/version.h libavcodec/wmalosslessdec.c libavformat/electronicarts.c libswscale/ppc/yuv2rgb_altivec.c tests/ref/acodec/g722 tests/ref/fate/ea-cmv Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
268098d8b2
80 changed files with 2353 additions and 2460 deletions
|
|
@ -84,9 +84,7 @@ ogm_header(AVFormatContext *s, int idx)
|
|||
if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO){
|
||||
st->codec->width = bytestream_get_le32(&p);
|
||||
st->codec->height = bytestream_get_le32(&p);
|
||||
st->codec->time_base.den = spu * 10000000;
|
||||
st->codec->time_base.num = time_unit;
|
||||
avpriv_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
|
||||
avpriv_set_pts_info(st, 64, spu * 10000000, time_unit);
|
||||
} else {
|
||||
st->codec->channels = bytestream_get_le16(&p);
|
||||
p += 2; /* block_align */
|
||||
|
|
@ -132,8 +130,7 @@ ogm_dshow_header(AVFormatContext *s, int idx)
|
|||
if(t == 0x05589f80){
|
||||
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, AV_RL32(p + 68));
|
||||
st->codec->time_base.den = 10000000;
|
||||
st->codec->time_base.num = AV_RL64(p + 164);
|
||||
avpriv_set_pts_info(st, 64, AV_RL64(p + 164), 10000000);
|
||||
st->codec->width = AV_RL32(p + 176);
|
||||
st->codec->height = AV_RL32(p + 180);
|
||||
} else if(t == 0x05589f81){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue