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/internal.h | |
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/internal.h')
-rw-r--r-- | libavcodec/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |