Commit b4e1630d authored by wm4's avatar wm4 Committed by Michael Niedermayer

lavc: don't show "Invalid and inefficient vfw-avi..." warning in mpeg4 parser

Only the actual decoder should print this warning.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ce228206
...@@ -114,6 +114,7 @@ static av_cold int mpeg4video_parse_init(AVCodecParserContext *s) ...@@ -114,6 +114,7 @@ static av_cold int mpeg4video_parse_init(AVCodecParserContext *s)
pc->first_picture = 1; pc->first_picture = 1;
pc->enc.quant_precision=5; pc->enc.quant_precision=5;
pc->enc.slice_context_count = 1; pc->enc.slice_context_count = 1;
pc->enc.showed_packed_warning = 1;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment