comparison mpegvideo.h @ 5966:1275461ae6f8 libavcodec

Fix some spelling mistakes.
author diego
date Sun, 02 Dec 2007 14:06:28 +0000
parents 80103098c797
children e830a3633548
comparison
equal deleted inserted replaced
5965:febfff2ccb8d 5966:1275461ae6f8
92 typedef struct ScanTable{ 92 typedef struct ScanTable{
93 const uint8_t *scantable; 93 const uint8_t *scantable;
94 uint8_t permutated[64]; 94 uint8_t permutated[64];
95 uint8_t raster_end[64]; 95 uint8_t raster_end[64];
96 #ifdef ARCH_POWERPC 96 #ifdef ARCH_POWERPC
97 /** Used by dct_quantize_alitvec to find last-non-zero */ 97 /** Used by dct_quantize_altivec to find last-non-zero */
98 DECLARE_ALIGNED_8(uint8_t, inverse[64]); 98 DECLARE_ALIGNED_8(uint8_t, inverse[64]);
99 #endif 99 #endif
100 } ScanTable; 100 } ScanTable;
101 101
102 /** 102 /**
109 * halfpel luma planes. 109 * halfpel luma planes.
110 */ 110 */
111 uint8_t *interpolated[3]; 111 uint8_t *interpolated[3];
112 int16_t (*motion_val_base[2])[2]; 112 int16_t (*motion_val_base[2])[2];
113 uint32_t *mb_type_base; 113 uint32_t *mb_type_base;
114 #define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if theres just one type 114 #define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if there is just one type
115 #define IS_INTRA4x4(a) ((a)&MB_TYPE_INTRA4x4) 115 #define IS_INTRA4x4(a) ((a)&MB_TYPE_INTRA4x4)
116 #define IS_INTRA16x16(a) ((a)&MB_TYPE_INTRA16x16) 116 #define IS_INTRA16x16(a) ((a)&MB_TYPE_INTRA16x16)
117 #define IS_PCM(a) ((a)&MB_TYPE_INTRA_PCM) 117 #define IS_PCM(a) ((a)&MB_TYPE_INTRA_PCM)
118 #define IS_INTRA(a) ((a)&7) 118 #define IS_INTRA(a) ((a)&7)
119 #define IS_INTER(a) ((a)&(MB_TYPE_16x16|MB_TYPE_16x8|MB_TYPE_8x16|MB_TYPE_8x8)) 119 #define IS_INTER(a) ((a)&(MB_TYPE_16x16|MB_TYPE_16x8|MB_TYPE_8x16|MB_TYPE_8x8))