diff options
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dvdsubenc.c | 2 | ||||
-rw-r--r-- | libavcodec/internal.h | 2 | ||||
-rw-r--r-- | libavcodec/utils.c | 2 |
3 files changed, 3 insertions, 3 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; diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 386f6f3c26..cf8bbe5e32 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -204,6 +204,6 @@ int ff_codec_close_recursive(AVCodecContext *avctx); /** * Finalize buf into extradata and set its size appropriately. */ -int ff_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf); +int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf); #endif /* AVCODEC_INTERNAL_H */ diff --git a/libavcodec/utils.c b/libavcodec/utils.c index a275899ff7..738fb29843 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2686,7 +2686,7 @@ int avcodec_is_open(AVCodecContext *s) return !!s->internal; } -int ff_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf) +int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf) { int ret; char *str; |