diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-30 22:54:53 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-30 22:54:56 +0100 |
commit | 67286fa98b1ebbf005de784b47852f8d429d03c8 (patch) | |
tree | 8434a01b70a8d6ce8adc2f334773afdaa9bc52bc /libavformat/subviewerdec.c | |
parent | 5c68aae90883497d59a2a49cf75816cf5906e14a (diff) | |
download | ffmpeg-67286fa98b1ebbf005de784b47852f8d429d03c8.tar.gz |
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.c | 2 |
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)) { |