You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-25 14:23:15 +02:00
avcodec/faxcompr: Print the unsupported mode number
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@ -211,7 +211,8 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb,
|
||||
mode = !mode;
|
||||
}
|
||||
} else if (cmode == 9 || cmode == 10) {
|
||||
avpriv_report_missing_feature(avctx, "Special modes support");
|
||||
int xxx = get_bits(gb, 3);
|
||||
avpriv_report_missing_feature(avctx, "Special mode %d xxx=%d support", cmode, xxx);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
} else { //vertical mode
|
||||
run = run_off - offs + (cmode - 5);
|
||||
|
Reference in New Issue
Block a user