comparison libpostproc/postprocess.h @ 820:6d225a8f0ff0 libavcodec

cosmetics requested by kabi
author michael
date Fri, 01 Nov 2002 01:19:04 +0000
parents de7636688003
children c39e14fc2392
comparison
equal deleted inserted replaced
819:ae89deb3a97d 820:6d225a8f0ff0
62 //filters on 62 //filters on
63 //#define COMPILE_TIME_MODE 0x77 63 //#define COMPILE_TIME_MODE 0x77
64 64
65 #define QP_STORE_T int8_t 65 #define QP_STORE_T int8_t
66 66
67 typedef void pp_context; 67 typedef void pp_context_t;
68 68
69 extern char *pp_help; 69 extern char *pp_help;
70 70
71 //FIXME decide if this should be exported at all 71 //FIXME decide if this should be exported at all
72 typedef struct PPMode{ 72 typedef struct PPMode{
88 88
89 void pp_postprocess(uint8_t * src[3], int srcStride[3], 89 void pp_postprocess(uint8_t * src[3], int srcStride[3],
90 uint8_t * dst[3], int dstStride[3], 90 uint8_t * dst[3], int dstStride[3],
91 int horizontalSize, int verticalSize, 91 int horizontalSize, int verticalSize,
92 QP_STORE_T *QP_store, int QP_stride, 92 QP_STORE_T *QP_store, int QP_stride,
93 PPMode *mode, pp_context *ppContext, int pict_type); 93 PPMode *mode, pp_context_t *ppContext, int pict_type);
94 94
95 // name is the stuff after "-pp" on the command line 95 // name is the stuff after "-pp" on the command line
96 PPMode pp_get_mode_by_name_and_quality(char *name, int quality); 96 PPMode pp_get_mode_by_name_and_quality(char *name, int quality);
97 97
98 pp_context *pp_get_context(int width, int height, int cpuCaps); 98 pp_context_t *pp_get_context(int width, int height, int cpuCaps);
99 void pp_free_context(pp_context *ppContext); 99 void pp_free_context(pp_context_t *ppContext);
100 100
101 #define PP_CPU_CAPS_MMX 0x80000000 101 #define PP_CPU_CAPS_MMX 0x80000000
102 #define PP_CPU_CAPS_MMX2 0x20000000 102 #define PP_CPU_CAPS_MMX2 0x20000000
103 #define PP_CPU_CAPS_3DNOW 0x40000000 103 #define PP_CPU_CAPS_3DNOW 0x40000000
104 104