Mercurial > libavcodec.hg
changeset 10747:b995bfb3e4fd libavcodec
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.
author | diego |
---|---|
date | Wed, 30 Dec 2009 11:07:04 +0000 |
parents | c4898c0739be |
children | 36611425fedb |
files | h263.h |
diffstat | 1 files changed, 1 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/h263.h Wed Dec 30 02:09:51 2009 +0000 +++ b/h263.h Wed Dec 30 11:07:04 2009 +0000 @@ -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 */