diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-24 07:36:05 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-25 14:38:57 -0500 |
commit | 61840b43607679e8c4a1a63f005770f69dda12fa (patch) | |
tree | fa214ad1f993755aeebe88d9117e864f06389f05 /libavformat/aviobuf.c | |
parent | bbc413f943b53d96aa85fe272ec413c85794019f (diff) | |
download | ffmpeg-61840b43607679e8c4a1a63f005770f69dda12fa.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>
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 270352ecb6..f53ec562f5 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -449,12 +449,14 @@ void avio_wb24(AVIOContext *s, unsigned int val) avio_w8(s, val); } +#if FF_API_OLD_AVIO void put_tag(AVIOContext *s, const char *tag) { while (*tag) { avio_w8(s, *tag++); } } +#endif /* Input stream */ |