Browse Source

avcodec/dpx: reformat avpriv_report_missing_feature messages

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.1
Paul B Mahol 12 years ago
parent
commit
0841652b54
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavcodec/dpx.c

+ 2
- 4
libavcodec/dpx.c View File

@@ -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…
Cancel
Save