]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/dnxhddec.c
Merge commit 'fe27792fd779ac4cdd5e57be5f6f488483c307b2'
[ffmpeg] / libavformat / dnxhddec.c
index 48c890d1853dff7a909ad0959908edbed27610d8..0ad51b597b53068589182d28d8201685ff13f152 100644 (file)
@@ -30,7 +30,7 @@ static int dnxhd_probe(AVProbeData *p)
     int w, h, compression_id;
     if (p->buf_size < 0x2c)
         return 0;
-    if (avpriv_dnxhd_parse_header_prefix(p->buf) == 0)
+    if (ff_dnxhd_parse_header_prefix(p->buf) == 0)
         return 0;
     h = AV_RB16(p->buf + 0x18);
     w = AV_RB16(p->buf + 0x1a);