diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2020-01-26 20:52:48 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2020-01-26 21:44:43 +0530 |
commit | 0b1ff3265e9bdad3b4b6b97ced2f126cb3599568 (patch) | |
tree | b32fcae8d99a69e678d21550dfdd2eeadfb360f6 | |
parent | 724e6b3d63786a910188a83a0d30c67c4fb359a9 (diff) | |
download | ffmpeg-0b1ff3265e9bdad3b4b6b97ced2f126cb3599568.tar.gz |
avformat/yuv4mpegdec: increase header limit
Allows demuxing UHD 30000/1001 fps yuvj420p files
-rw-r--r-- | libavformat/yuv4mpegdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/yuv4mpegdec.c b/libavformat/yuv4mpegdec.c index d7b472e6c7..ccd3da1af8 100644 --- a/libavformat/yuv4mpegdec.c +++ b/libavformat/yuv4mpegdec.c @@ -26,7 +26,7 @@ #include "yuv4mpeg.h" /* Header size increased to allow room for optional flags */ -#define MAX_YUV4_HEADER 80 +#define MAX_YUV4_HEADER 96 #define MAX_FRAME_HEADER 80 static int yuv4_read_header(AVFormatContext *s) |