diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-24 07:36:05 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-26 03:16:05 +0100 |
commit | 3308ddfb368d9011618c4f3b74d6bf3c30153900 (patch) | |
tree | 6e47e4a26a82138836d0e3bad2d205fe10c29a03 /libavformat/avio.h | |
parent | a1b797926179071841b0d01c6befd8d2e2ebe8e6 (diff) | |
download | ffmpeg-3308ddfb368d9011618c4f3b74d6bf3c30153900.tar.gz |
avio: deprecate put_tag
it's not used internally anymore and shouldn't be public.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 61840b43607679e8c4a1a63f005770f69dda12fa)
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 5876228235..613d77d240 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -407,6 +407,7 @@ attribute_deprecated void put_le24(AVIOContext *s, unsigned int val); attribute_deprecated void put_be24(AVIOContext *s, unsigned int val); attribute_deprecated void put_le16(AVIOContext *s, unsigned int val); attribute_deprecated void put_be16(AVIOContext *s, unsigned int val); +attribute_deprecated void put_tag(AVIOContext *s, const char *tag); /** * @} */ @@ -443,7 +444,6 @@ void avio_wl24(AVIOContext *s, unsigned int val); void avio_wb24(AVIOContext *s, unsigned int val); void avio_wl16(AVIOContext *s, unsigned int val); void avio_wb16(AVIOContext *s, unsigned int val); -void put_tag(AVIOContext *s, const char *tag); #if FF_API_OLD_AVIO attribute_deprecated void put_strz(AVIOContext *s, const char *buf); |