[SCM] libav/experimental: Rename avfilter_make_format_list2() to avfilter_make_format_list().

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:53:14 UTC 2013


The following commit has been merged in the experimental branch:
commit 6b5dc050a2d9991009155c263a7b28422b6c97c0
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Sun Oct 18 23:39:54 2009 +0000

    Rename avfilter_make_format_list2() to avfilter_make_format_list().
    
    Originally committed as revision 20302 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 2aac3e0..a2e23dd 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -23,7 +23,7 @@
 #define AVFILTER_AVFILTER_H
 
 #define LIBAVFILTER_VERSION_MAJOR  1
-#define LIBAVFILTER_VERSION_MINOR  2
+#define LIBAVFILTER_VERSION_MINOR  3
 #define LIBAVFILTER_VERSION_MICRO  0
 
 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
@@ -176,7 +176,7 @@ struct AVFilterFormats
  * @param pix_fmt list of pixel formats, terminated by PIX_FMT_NONE
  * @return the format list, with no existing references
  */
-AVFilterFormats *avfilter_make_format_list2(enum PixelFormat *pix_fmt);
+AVFilterFormats *avfilter_make_format_list(enum PixelFormat *pix_fmt);
 
 /**
  * Returns a list of all colorspaces supported by FFmpeg.
diff --git a/libavfilter/formats.c b/libavfilter/formats.c
index b1763d9..081a87e 100644
--- a/libavfilter/formats.c
+++ b/libavfilter/formats.c
@@ -69,7 +69,7 @@ AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b)
     return ret;
 }
 
-AVFilterFormats *avfilter_make_format_list2(enum PixelFormat *pix_fmt)
+AVFilterFormats *avfilter_make_format_list(enum PixelFormat *pix_fmt)
 {
     AVFilterFormats *formats;
     int count;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list