diff options
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 92074f809e..bc8ee2eead 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2945,8 +2945,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; } |