ptx: Use av_log_ask_for_sample() where appropriate.

This commit is contained in:
Diego Biurrun 2011-04-17 23:42:10 +02:00
parent fd0c3403f6
commit 259a3e70ed
1 changed files with 2 additions and 2 deletions

View File

@ -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;