summaryrefslogtreecommitdiff
path: root/libavcodec/vp6.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-25 23:53:52 +0100
committerDiego Biurrun <diego@biurrun.de>2013-03-13 20:42:21 +0100
commit63d744e2be39466e3a734c2987cd713e0bac101e (patch)
treeccea7c1ea4dd0e8a160472cd67a053874864208a /libavcodec/vp6.c
parentf099d3d1d5466bd63f4ab36270d169ff9ea613b8 (diff)
av_log_missing_feature() ---> avpriv_report_missing_feature()
Diffstat (limited to 'libavcodec/vp6.c')
-rw-r--r--libavcodec/vp6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c
index 30b489dfca..2e25a55f3f 100644
--- a/libavcodec/vp6.c
+++ b/libavcodec/vp6.c
@@ -63,7 +63,7 @@ static int vp6_parse_header(VP56Context *s, const uint8_t *buf, int buf_size,
return AVERROR_INVALIDDATA;
s->filter_header = buf[1] & 0x06;
if (buf[1] & 1) {
- av_log_missing_feature(s->avctx, "Interlacing", 0);
+ avpriv_report_missing_feature(s->avctx, "Interlacing");
return AVERROR_PATCHWELCOME;
}
if (separated_coeff || !s->filter_header) {