diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-08 19:08:03 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-09 11:39:26 +0200 |
commit | f75f4194d1ea4e5a0176b13452345eff87164416 (patch) | |
tree | b8f943c9b7128ec61a19b3f378c3670ed9cb3a67 /libavcodec/h264.c | |
parent | c136a813d77ed0c8698386d140990e9003d5d38c (diff) | |
download | ffmpeg-f75f4194d1ea4e5a0176b13452345eff87164416.tar.gz |
Restructure av_log_missing_feature message
Some invocations include a verb in the log message, others do not. Yet
av_log_missing_feature expects callers to provide a verb. Change the
function to include a verb instead and update the callers accordingly.
The result is a more natural function API and correct English in the
function invocations.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 3c5870ce0d..8648a8d90b 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2462,7 +2462,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0) av_cmp_q(h->sps.sar, s->avctx->sample_aspect_ratio))) { if (h != h0 || (HAVE_THREADS && h->s.avctx->active_thread_type & FF_THREAD_FRAME)) { av_log_missing_feature(s->avctx, - "Width/height changing with threads is", 0); + "Width/height changing with threads", 0); return AVERROR_PATCHWELCOME; // width / height changed during parallelized decoding } free_tables(h, 0); |