[SCM] libav/experimental: Eliminate CONFIG_ANY_H263_DECODER preprocessor definition. It is just a logical OR of several decoder definitions, all of which depend on CONFIG_H263_DECODER. So it can just be replaced by the latter.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:56:34 UTC 2013


The following commit has been merged in the experimental branch:
commit 716d1c2a313a833f7496953840158b7e23970d03
Author: Diego Biurrun <diego at biurrun.de>
Date:   Wed Dec 30 11:07:04 2009 +0000

    Eliminate CONFIG_ANY_H263_DECODER preprocessor definition.
    It is just a logical OR of several decoder definitions, all of which depend on
    CONFIG_H263_DECODER. So it can just be replaced by the latter.
    
    Originally committed as revision 20973 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/h263.h b/libavcodec/h263.h
index 515388b..7a7b7c7 100644
--- a/libavcodec/h263.h
+++ b/libavcodec/h263.h
@@ -25,10 +25,6 @@
 #include "config.h"
 #include "msmpeg4.h"
 
-#define CONFIG_ANY_H263_DECODER (CONFIG_H263_DECODER    || \
-                                 CONFIG_MSMPEG4_DECODER || \
-                                 CONFIG_WMV1_DECODER    || \
-                                 CONFIG_WMV2_DECODER)
-#define CONFIG_ANY_H263 (CONFIG_ANY_H263_DECODER || CONFIG_H263_ENCODER)
+#define CONFIG_ANY_H263 (CONFIG_H263_DECODER || CONFIG_H263_ENCODER)
 
 #endif /* AVCODEC_H263_H */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list