Commit 0841652b authored by Paul B Mahol's avatar Paul B Mahol

avcodec/dpx: reformat avpriv_report_missing_feature messages

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent c3e0fbc5
...@@ -130,13 +130,11 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -130,13 +130,11 @@ static int decode_frame(AVCodecContext *avctx,
encoding = read16(&buf, endian); encoding = read16(&buf, endian);
if (packing > 1) { if (packing > 1) {
avpriv_report_missing_feature(avctx, avpriv_report_missing_feature(avctx, "Packing %d", packing);
"Unsupported packing %d\n", packing);
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
if (encoding) { if (encoding) {
avpriv_report_missing_feature(avctx, avpriv_report_missing_feature(avctx, "Encoding %d", encoding);
"Unsupported encoding %d\n", encoding);
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
......
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