summaryrefslogtreecommitdiff
path: root/libavformat/subviewerdec.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-12-30 22:54:53 +0100
committerClément Bœsch <ubitux@gmail.com>2012-12-30 22:54:56 +0100
commit67286fa98b1ebbf005de784b47852f8d429d03c8 (patch)
tree8434a01b70a8d6ce8adc2f334773afdaa9bc52bc /libavformat/subviewerdec.c
parent5c68aae90883497d59a2a49cf75816cf5906e14a (diff)
10l: export ff_bprint_to_extradata between libs using avpriv_ prefix.
Both libavformat and libavcodec requires this function.
Diffstat (limited to 'libavformat/subviewerdec.c')
-rw-r--r--libavformat/subviewerdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/subviewerdec.c b/libavformat/subviewerdec.c
index 8ecc928817..ac3a06a104 100644
--- a/libavformat/subviewerdec.c
+++ b/libavformat/subviewerdec.c
@@ -100,7 +100,7 @@ static int subviewer_read_header(AVFormatContext *s)
av_bprintf(&header, "%s", line);
if (!strncmp(line, "[END INFORMATION]", 17) || !strncmp(line, "[SUBTITLE]", 10)) {
/* end of header */
- res = ff_bprint_to_extradata(st->codec, &header);
+ res = avpriv_bprint_to_extradata(st->codec, &header);
if (res < 0)
goto end;
} else if (strncmp(line, "[INFORMATION]", 13)) {