From 0c75bd8e3cd7f92a65878fc643d17d7826ecc561 Mon Sep 17 00:00:00 2001 From: James Almer Date: Mon, 25 Jul 2016 12:09:22 -0300 Subject: avcodec/dnxhddata: move avpriv_dnxhd_parse_header_prefix to a header It's a small and simple function that can be inlined. This removes one private symbol and should reduce object dependencies with the next major bump Signed-off-by: James Almer --- libavformat/dnxhddec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/dnxhddec.c') 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); -- cgit v1.2.3