1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

100l to myself. Do not include stuff unneeded by parser

Originally committed as revision 8886 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2007-05-04 12:31:40 +00:00
parent f9eada03db
commit 58683d2743
2 changed files with 3 additions and 0 deletions

View File

@ -35,6 +35,7 @@ enum VC1Code{
#define IS_MARKER(x) (((x) & ~0xFF) == VC1_CODE_RES0)
#ifndef VC1_PARSER_ONLY
/** Available Profiles */
//@{
enum Profile {
@ -362,3 +363,4 @@ typedef struct VC1Context{
int p_frame_skipped;
int bi_type;
} VC1Context;
#endif

View File

@ -26,6 +26,7 @@
*/
#include "dsputil.h"
#include "parser.h"
#define VC1_PARSER_ONLY
#include "vc1.h"
/**