diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-03-13 21:18:34 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 21:20:12 +0100 |
commit | 12e25ed284592b32c954d471e9b7b1e5a0dbf18d (patch) | |
tree | 4653146a75530613167c1ff5b4f21ce38eb448a5 /libavcodec/h264.c | |
parent | 6d97484d72e33f7dde9493a9ead1a72e2f029605 (diff) | |
download | ffmpeg-12e25ed284592b32c954d471e9b7b1e5a0dbf18d.tar.gz |
avcodec: av_log_missing_feature(1) ---> avpriv_request_sample()
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 4 |
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; } |