mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-28 05:30:34 +00:00
print obmc bug info only if avctx->debug&1
Originally committed as revision 1848 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0433188259
commit
85ea6b2958
@ -4374,7 +4374,8 @@ static int decode_vol_header(MpegEncContext *s, GetBitContext *gb){
|
||||
}
|
||||
|
||||
s->progressive_sequence= get_bits1(gb)^1;
|
||||
if(!get_bits1(gb)) printf("OBMC not supported (very likely buggy encoder)\n"); /* OBMC Disable */
|
||||
if(!get_bits1(gb) && (s->avctx->debug & FF_DEBUG_PICT_INFO))
|
||||
printf("OBMC not supported (very likely buggy encoder)\n"); /* OBMC Disable */
|
||||
if (vo_ver_id == 1) {
|
||||
s->vol_sprite_usage = get_bits1(gb); /* vol_sprite_usage */
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user