[FFmpeg-cvslog] lavf: remove disabled FF_API_NEW_STREAM cruft

Anton Khirnov git at videolan.org
Sat Jan 28 08:05:12 CET 2012


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Jan 12 13:31:55 2012 +0100| [1329827e79766e21277a575d7abfdd0f07eb854c] | committer: Anton Khirnov

lavf: remove disabled FF_API_NEW_STREAM cruft

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1329827e79766e21277a575d7abfdd0f07eb854c
---

 libavformat/avformat.h |   15 ---------------
 libavformat/utils.c    |   10 ----------
 libavformat/version.h  |    3 ---
 3 files changed, 0 insertions(+), 28 deletions(-)

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 970ca34..1bd2c49 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1379,21 +1379,6 @@ void avformat_close_input(AVFormatContext **s);
  * @}
  */
 
-#if FF_API_NEW_STREAM
-/**
- * Add a new stream to a media file.
- *
- * Can only be called in the read_header() function. If the flag
- * AVFMTCTX_NOHEADER is in the format context, then new streams
- * can be added in read_packet too.
- *
- * @param s media file handle
- * @param id file-format-dependent stream ID
- */
-attribute_deprecated
-AVStream *av_new_stream(AVFormatContext *s, int id);
-#endif
-
 #if FF_API_SET_PTS_INFO
 /**
  * @deprecated this function is not supposed to be called outside of lavf
diff --git a/libavformat/utils.c b/libavformat/utils.c
index d241200..24e0e8f 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2630,16 +2630,6 @@ void avformat_close_input(AVFormatContext **ps)
         avio_close(pb);
 }
 
-#if FF_API_NEW_STREAM
-AVStream *av_new_stream(AVFormatContext *s, int id)
-{
-    AVStream *st = avformat_new_stream(s, NULL);
-    if (st)
-        st->id = id;
-    return st;
-}
-#endif
-
 AVStream *avformat_new_stream(AVFormatContext *s, AVCodec *c)
 {
     AVStream *st;
diff --git a/libavformat/version.h b/libavformat/version.h
index 0e1be85..a54a075 100644
--- a/libavformat/version.h
+++ b/libavformat/version.h
@@ -47,9 +47,6 @@
  * Those FF_API_* defines are not part of public API.
  * They may change, break or disappear at any time.
  */
-#ifndef FF_API_NEW_STREAM
-#define FF_API_NEW_STREAM              (LIBAVFORMAT_VERSION_MAJOR < 54)
-#endif
 #ifndef FF_API_PRELOAD
 #define FF_API_PRELOAD                 (LIBAVFORMAT_VERSION_MAJOR < 54)
 #endif



More information about the ffmpeg-cvslog mailing list