]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/aviobuf.c
avio: deprecate put_tag
[ffmpeg] / libavformat / aviobuf.c
index 270352ecb6221db10785b88d80cb8ec0a56a4a5c..f53ec562f54122ba197fbd10ec40aa837cee617f 100644 (file)
@@ -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 */