aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/exr.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-10-09 13:46:44 +0000
committerPaul B Mahol <onemda@gmail.com>2013-10-09 13:46:44 +0000
commit8c7bc7d3e50fa89f9bcf245f0340ed9829a7d574 (patch)
tree52c214115780a8a2d221556eb4f04c4cbf3a72bf /libavcodec/exr.c
parent19fda0a1bcb1fe5668e67055a891bb9b836cbe1b (diff)
downloadandroid_external_ffmpeg-8c7bc7d3e50fa89f9bcf245f0340ed9829a7d574.tar.gz
android_external_ffmpeg-8c7bc7d3e50fa89f9bcf245f0340ed9829a7d574.tar.bz2
android_external_ffmpeg-8c7bc7d3e50fa89f9bcf245f0340ed9829a7d574.zip
avcodec/exr: use avpriv_report_missing_feature()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/exr.c')
-rw-r--r--libavcodec/exr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index 4be7f0029b..499886c597 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -501,13 +501,13 @@ static int decode_frame(AVCodecContext *avctx,
version = bytestream_get_byte(&buf);
if (version != 2) {
- av_log(avctx, AV_LOG_ERROR, "Unsupported version %d\n", version);
+ avpriv_report_missing_feature(avctx, "Version %d", version);
return AVERROR_PATCHWELCOME;
}
flags = bytestream_get_le24(&buf);
if (flags & 0x2) {
- av_log(avctx, AV_LOG_ERROR, "Tile based images are not supported\n");
+ avpriv_report_missing_feature(avctx, "Tile support");
return AVERROR_PATCHWELCOME;
}
@@ -556,7 +556,7 @@ static int decode_frame(AVCodecContext *avctx,
xsub = bytestream_get_le32(&buf);
ysub = bytestream_get_le32(&buf);
if (xsub != 1 || ysub != 1) {
- av_log(avctx, AV_LOG_ERROR, "Unsupported subsampling %dx%d\n", xsub, ysub);
+ avpriv_report_missing_feature(avctx, "Subsampling %dx%d", xsub, ysub);
return AVERROR_PATCHWELCOME;
}
@@ -715,7 +715,7 @@ static int decode_frame(AVCodecContext *avctx,
s->scan_lines_per_block = 16;
break;
default:
- av_log(avctx, AV_LOG_ERROR, "Compression type %d is not supported\n", s->compr);
+ avpriv_report_missing_feature(avctx, "Compression %d", s->compr);
return AVERROR_PATCHWELCOME;
}