summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-03-13 21:18:34 +0100
committerDiego Biurrun <diego@biurrun.de>2013-03-13 21:20:12 +0100
commit12e25ed284592b32c954d471e9b7b1e5a0dbf18d (patch)
tree4653146a75530613167c1ff5b4f21ce38eb448a5 /libavcodec/h264.c
parent6d97484d72e33f7dde9493a9ead1a72e2f029605 (diff)
downloadffmpeg-streaming-12e25ed284592b32c954d471e9b7b1e5a0dbf18d.zip
ffmpeg-streaming-12e25ed284592b32c954d471e9b7b1e5a0dbf18d.tar.gz
avcodec: av_log_missing_feature(1) ---> avpriv_request_sample()
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 2e9487c..9b196c7 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2884,8 +2884,8 @@ static int h264_set_parameter_from_sps(H264Context *h)
h->avctx->has_b_frames = !h->low_delay;
if (h->sps.bit_depth_luma != h->sps.bit_depth_chroma) {
- av_log_missing_feature(h->avctx,
- "Different bit depth between chroma and luma", 1);
+ avpriv_request_sample(h->avctx,
+ "Different chroma and luma bit depth");
return AVERROR_PATCHWELCOME;
}
OpenPOWER on IntegriCloud