From: Kostya Shishkov Date: Sun, 6 May 2007 11:01:25 +0000 (+0000) Subject: Make vc1_parser.c compilable without special defines X-Git-Tag: v0.5~9105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de53b04b53f90d94bad16a3358cdc8b5b41ebee3;p=platform%2Fupstream%2Flibav.git Make vc1_parser.c compilable without special defines Originally committed as revision 8914 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index ab2b231..04568ca 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -20,6 +20,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "avcodec.h" +#include "mpegvideo.h" + /** Markers used in VC-1 AP frame data */ //@{ enum VC1Code{ @@ -35,7 +38,6 @@ enum VC1Code{ #define IS_MARKER(x) (((x) & ~0xFF) == VC1_CODE_RES0) -#ifndef VC1_PARSER_ONLY /** Available Profiles */ //@{ enum Profile { @@ -298,4 +300,3 @@ typedef struct VC1Context{ int p_frame_skipped; int bi_type; } VC1Context; -#endif diff --git a/libavcodec/vc1_parser.c b/libavcodec/vc1_parser.c index 4fa9e52..a4db401 100644 --- a/libavcodec/vc1_parser.c +++ b/libavcodec/vc1_parser.c @@ -26,7 +26,6 @@ */ #include "parser.h" -#define VC1_PARSER_ONLY #include "vc1.h" /**