summaryrefslogtreecommitdiff
path: root/libavcodec/dpx.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-10-05 12:21:58 +0000
committerPaul B Mahol <onemda@gmail.com>2013-10-05 12:26:45 +0000
commit0841652b548b4f8650e736de08cbdf7c0bcb91b1 (patch)
tree059051467f8e16f15b4f85519ba2bd74b9f81b23 /libavcodec/dpx.c
parentc3e0fbc507fca3f3599fd3a9eb39eda730b54e39 (diff)
downloadffmpeg-0841652b548b4f8650e736de08cbdf7c0bcb91b1.tar.gz
avcodec/dpx: reformat avpriv_report_missing_feature messages
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/dpx.c')
-rw-r--r--libavcodec/dpx.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index 600a735920..91545c6922 100644
--- a/libavcodec/dpx.c
+++ b/libavcodec/dpx.c
@@ -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;
}