mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
emulate (idiotic) MS behavior for inconsistant dimensions
Originally committed as revision 3940 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1b781f82c9
commit
3f26d68aec
@ -5538,7 +5538,7 @@ static int decode_vol_header(MpegEncContext *s, GetBitContext *gb){
|
||||
skip_bits1(gb); /* marker */
|
||||
height = get_bits(gb, 13);
|
||||
skip_bits1(gb); /* marker */
|
||||
if(width && height){ /* they should be non zero but who knows ... */
|
||||
if(width && height && !(s->width && s->avctx->codec_tag == ff_get_fourcc("MP4S"))){ /* they should be non zero but who knows ... */
|
||||
s->width = width;
|
||||
s->height = height;
|
||||
// printf("width/height: %d %d\n", width, height);
|
||||
|
Loading…
Reference in New Issue
Block a user