mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
avcodec/dpx: reformat avpriv_report_missing_feature messages
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
c3e0fbc507
commit
0841652b54
@ -130,13 +130,11 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
encoding = read16(&buf, endian);
|
||||
|
||||
if (packing > 1) {
|
||||
avpriv_report_missing_feature(avctx,
|
||||
"Unsupported packing %d\n", packing);
|
||||
avpriv_report_missing_feature(avctx, "Packing %d", packing);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
if (encoding) {
|
||||
avpriv_report_missing_feature(avctx,
|
||||
"Unsupported encoding %d\n", encoding);
|
||||
avpriv_report_missing_feature(avctx, "Encoding %d", encoding);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user