Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-03-14 00:18:34 +0400
committerDiego Biurrun <diego@biurrun.de>2013-03-14 00:20:12 +0400
commit12e25ed284592b32c954d471e9b7b1e5a0dbf18d (patch)
tree4653146a75530613167c1ff5b4f21ce38eb448a5 /libavcodec/h264.c
parent6d97484d72e33f7dde9493a9ead1a72e2f029605 (diff)
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 2e9487cd5c..9b196c711d 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;
}