[FFmpeg-cvslog] ptx: Use av_log_ask_for_sample() where appropriate.

Diego Biurrun git at videolan.org
Tue Apr 19 02:12:56 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sun Apr 17 23:42:10 2011 +0200| [259a3e70ed828d85f0e588f90e73350a923c9cbc] | committer: Diego Biurrun

ptx: Use av_log_ask_for_sample() where appropriate.

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

 libavcodec/ptx.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/ptx.c b/libavcodec/ptx.c
index fb8b0d8..94f1656 100644
--- a/libavcodec/ptx.c
+++ b/libavcodec/ptx.c
@@ -51,14 +51,14 @@ static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
     bytes_per_pixel = AV_RL16(buf+12) >> 3;
 
     if (bytes_per_pixel != 2) {
-        av_log(avctx, AV_LOG_ERROR, "image format is not rgb15, please report on ffmpeg-users mailing list\n");
+        av_log_ask_for_sample(avctx, "Image format is not RGB15.\n");
         return -1;
     }
 
     avctx->pix_fmt = PIX_FMT_RGB555;
 
     if (offset != 0x2c)
-        av_log(avctx, AV_LOG_WARNING, "offset != 0x2c, untested due to lack of sample files\n");
+        av_log_ask_for_sample(avctx, "offset != 0x2c\n");
 
     buf += offset;
 



More information about the ffmpeg-cvslog mailing list