comparison libmpeg2/libmpeg-0.4.1.diff @ 26284:c5cd2eedc579

Remove pointless comments from local diff.
author diego
date Tue, 01 Apr 2008 17:42:16 +0000
parents 62abac0c8637
children 4bc81fcf14bb
comparison
equal deleted inserted replaced
26283:62abac0c8637 26284:c5cd2eedc579
238 #define MPEG2_ACCEL_DETECT 0x80000000 238 #define MPEG2_ACCEL_DETECT 0x80000000
239 239
240 uint32_t mpeg2_accel (uint32_t accel); 240 uint32_t mpeg2_accel (uint32_t accel);
241 --- libmpeg2/mpeg2_internal.h 2006-06-16 20:12:26.000000000 +0200 241 --- libmpeg2/mpeg2_internal.h 2006-06-16 20:12:26.000000000 +0200
242 +++ libmpeg2/mpeg2_internal.h 2006-06-16 20:12:50.000000000 +0200 242 +++ libmpeg2/mpeg2_internal.h 2006-06-16 20:12:50.000000000 +0200
243 @@ -144,6 +148,12 @@ 243 @@ -144,6 +148,11 @@
244 int second_field; 244 int second_field;
245 245
246 int mpeg1; 246 int mpeg1;
247 + 247 +
248 + /* for MPlayer: */
249 + int quantizer_scales[32]; 248 + int quantizer_scales[32];
250 + int quantizer_scale; 249 + int quantizer_scale;
251 + char* quant_store; 250 + char* quant_store;
252 + int quant_stride; 251 + int quant_stride;
253 }; 252 };
254 253
255 typedef struct { 254 typedef struct {
256 @@ -214,6 +224,10 @@ 255 @@ -214,6 +224,9 @@
257 int8_t q_scale_type, scaled[4]; 256 int8_t q_scale_type, scaled[4];
258 uint8_t quantizer_matrix[4][64]; 257 uint8_t quantizer_matrix[4][64];
259 uint8_t new_quantizer_matrix[4][64]; 258 uint8_t new_quantizer_matrix[4][64];
260 + 259 +
261 + /* for MPlayer: */
262 + unsigned char *pending_buffer; 260 + unsigned char *pending_buffer;
263 + int pending_length; 261 + int pending_length;
264 }; 262 };
265 263
266 typedef struct { 264 typedef struct {