comparison libpostproc/postprocess_internal.h @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents ace6e273f318
children bfabfdf9ce55
comparison
equal deleted inserted replaced
2966:564788471dd4 2967:ef2149182f1c
112 */ 112 */
113 typedef struct PPContext{ 113 typedef struct PPContext{
114 uint8_t *tempBlocks; ///<used for the horizontal code 114 uint8_t *tempBlocks; ///<used for the horizontal code
115 115
116 /** 116 /**
117 * luma histogram. 117 * luma histogram.
118 * we need 64bit here otherwise we'll going to have a problem 118 * we need 64bit here otherwise we'll going to have a problem
119 * after watching a black picture for 5 hours 119 * after watching a black picture for 5 hours
120 */ 120 */
121 uint64_t *yHistogram; 121 uint64_t *yHistogram;
122 122
145 145
146 int QP; 146 int QP;
147 int nonBQP; 147 int nonBQP;
148 148
149 int frameNum; 149 int frameNum;
150 150
151 int cpuCaps; 151 int cpuCaps;
152 152
153 int qpStride; ///<size of qp buffers (needed to realloc them if needed) 153 int qpStride; ///<size of qp buffers (needed to realloc them if needed)
154 int stride; ///<size of some buffers (needed to realloc them if needed) 154 int stride; ///<size of some buffers (needed to realloc them if needed)
155 155
156 int hChromaSubSample; 156 int hChromaSubSample;
157 int vChromaSubSample; 157 int vChromaSubSample;
158 158
159 PPMode ppMode; 159 PPMode ppMode;
160 } PPContext; 160 } PPContext;