move AUX_* macros to video_codec.h, will use them

This commit is contained in:
Lukas Hejtmanek
2010-02-17 17:22:03 +01:00
parent 10122a4713
commit ca871d6ea0
2 changed files with 8 additions and 7 deletions

View File

@@ -111,4 +111,12 @@ void vc_copyliner10k(unsigned char *dst, unsigned char *src, int len, int rshift
void vc_copylineRGBA(unsigned char *dst, unsigned char *src, int len, int rshift, int gshift, int bshift);
void vc_copylineDVS10toV210(unsigned char *dst, unsigned char *src, int dst_len);
#define AUX_INTERLACED 1<<0
#define AUX_PROGRESSIVE 1<<1
#define AUX_SF 1<<2
#define AUX_RGB 1<<3 /* if device supports both, set both */
#define AUX_YUV 1<<4
#define AUX_10Bit 1<<5
#endif

View File

@@ -48,13 +48,6 @@
#define DISPLAY_QUICKTIME_ID 0xba370f2f
#define AUX_INTERLACED 1<<0
#define AUX_PROGRESSIVE 1<<1
#define AUX_SF 1<<2
#define AUX_RGB 1<<3 /* if device supports both, set both */
#define AUX_YUV 1<<4
#define AUX_10Bit 1<<5
typedef struct {
char *device;
char *mode;