diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-10-24 15:31:35 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-10-24 15:31:35 +0000 |
commit | ea9632b7470e6117656ba0c3b15939bcb10d7ddf (patch) | |
tree | 636718601f51681d08d15f390c8491331ae273ad /libavcodec | |
parent | aaf02f6ede55a50375a99ed1ef6d1df964912530 (diff) | |
download | ffmpeg-ea9632b7470e6117656ba0c3b15939bcb10d7ddf.tar.gz |
avcodec/flicvideo: use avpriv_request_sample()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/flicvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index 35b3b6070d..76a7976a7d 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -134,7 +134,7 @@ static av_cold int flic_decode_init(AVCodecContext *avctx) case 15 : avctx->pix_fmt = AV_PIX_FMT_RGB555; break; case 16 : avctx->pix_fmt = AV_PIX_FMT_RGB565; break; case 24 : avctx->pix_fmt = AV_PIX_FMT_BGR24; /* Supposedly BGR, but havent any files to test with */ - av_log(avctx, AV_LOG_ERROR, "24Bpp FLC/FLX is unsupported due to no test files.\n"); + avpriv_request_sample(avctx, "24Bpp FLC/FLX"); return AVERROR_PATCHWELCOME; default : av_log(avctx, AV_LOG_ERROR, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth); |