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 /libavcodec/dvdsubenc.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 'libavcodec/dvdsubenc.c')
-rw-r--r-- | libavcodec/dvdsubenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdsubenc.c b/libavcodec/dvdsubenc.c index 352272d311..bf54aa2863 100644 --- a/libavcodec/dvdsubenc.c +++ b/libavcodec/dvdsubenc.c @@ -409,7 +409,7 @@ static int dvdsub_init(AVCodecContext *avctx) av_bprintf(&extradata, " %06"PRIx32"%c", dvdc->global_palette[i] & 0xFFFFFF, i < 15 ? ',' : '\n'); - ret = ff_bprint_to_extradata(avctx, &extradata); + ret = avpriv_bprint_to_extradata(avctx, &extradata); if (ret < 0) return ret; |