summaryrefslogtreecommitdiff
path: root/libavformat/dnxhddec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/dnxhddec.c')
-rw-r--r--libavformat/dnxhddec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dnxhddec.c b/libavformat/dnxhddec.c
index 48c890d185..0ad51b597b 100644
--- a/libavformat/dnxhddec.c
+++ b/libavformat/dnxhddec.c
@@ -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);