aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2014-08-18 16:32:26 +0200
committerClément Bœsch <u@pkh.me>2014-08-24 14:35:11 +0200
commitf888331769d666fd7b9cebf7d1b6d824300978cb (patch)
tree612e293481539cab0b90dac4ed5baed76baa066c /libavcodec/utils.c
parent6dfa70f272d7ede75d45991c907dd93c50be1690 (diff)
downloadffmpeg-f888331769d666fd7b9cebf7d1b6d824300978cb.tar.gz
avfilter: add codecview filter
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 6a40a032e8..985884f551 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1435,6 +1435,12 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
goto free_and_end;
}
+#if FF_API_VISMV
+ if (avctx->debug_mv)
+ av_log(avctx, AV_LOG_WARNING, "The 'vismv' option is deprecated, "
+ "see the codecview filter instead.\n");
+#endif
+
if (av_codec_is_encoder(avctx->codec)) {
int i;
if (avctx->codec->sample_fmts) {