[FFmpeg-cvslog] lavf: remove disabled FF_API_LOOP_OUTPUT cruft

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


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

lavf: remove disabled FF_API_LOOP_OUTPUT cruft

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

 libavformat/avformat.h |   11 -----------
 libavformat/gif.c      |    5 -----
 libavformat/version.h  |    3 ---
 3 files changed, 0 insertions(+), 19 deletions(-)

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 8a99535..5c53972 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -876,17 +876,6 @@ typedef struct AVFormatContext {
 #endif
     int max_delay;
 
-#if FF_API_LOOP_OUTPUT
-#define AVFMT_NOOUTPUTLOOP -1
-#define AVFMT_INFINITEOUTPUTLOOP 0
-    /**
-     * number of times to loop output in formats that support it
-     *
-     * @deprecated use the 'loop' private option in the gif muxer.
-     */
-    attribute_deprecated int loop_output;
-#endif
-
     int flags;
 #define AVFMT_FLAG_GENPTS       0x0001 ///< Generate missing pts even if it requires parsing future frames.
 #define AVFMT_FLAG_IGNIDX       0x0002 ///< Ignore index.
diff --git a/libavformat/gif.c b/libavformat/gif.c
index 3ef7ebe..eb1e9f0 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -288,11 +288,6 @@ static int gif_write_header(AVFormatContext *s)
         return AVERROR(EIO);
     }
 
-#if FF_API_LOOP_OUTPUT
-    if (s->loop_output)
-        gif->loop = s->loop_output;
-#endif
-
     gif_image_write_header(pb, width, height, gif->loop, NULL);
 
     avio_flush(s->pb);
diff --git a/libavformat/version.h b/libavformat/version.h
index 197dc37..4725892 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_LOOP_OUTPUT
-#define FF_API_LOOP_OUTPUT             (LIBAVFORMAT_VERSION_MAJOR < 54)
-#endif
 #ifndef FF_API_TIMESTAMP
 #define FF_API_TIMESTAMP               (LIBAVFORMAT_VERSION_MAJOR < 54)
 #endif



More information about the ffmpeg-cvslog mailing list