[FFmpeg-cvslog] avcodec/dpx: reformat avpriv_report_missing_feature messages

Paul B Mahol git at videolan.org
Sat Oct 5 14:30:43 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Oct  5 12:21:58 2013 +0000| [0841652b548b4f8650e736de08cbdf7c0bcb91b1] | committer: Paul B Mahol

avcodec/dpx: reformat avpriv_report_missing_feature messages

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0841652b548b4f8650e736de08cbdf7c0bcb91b1
---

 libavcodec/dpx.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index 600a735..91545c6 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;
     }
 



More information about the ffmpeg-cvslog mailing list