Remove pointless comments from local diff.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26316 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-01 17:42:16 +00:00
parent 01490fe993
commit 5e1f250543
2 changed files with 2 additions and 6 deletions

View File

@ -240,12 +240,11 @@
uint32_t mpeg2_accel (uint32_t accel);
--- libmpeg2/mpeg2_internal.h 2006-06-16 20:12:26.000000000 +0200
+++ libmpeg2/mpeg2_internal.h 2006-06-16 20:12:50.000000000 +0200
@@ -144,6 +148,12 @@
@@ -144,6 +148,11 @@
int second_field;
int mpeg1;
+
+ /* for MPlayer: */
+ int quantizer_scales[32];
+ int quantizer_scale;
+ char* quant_store;
@ -253,12 +252,11 @@
};
typedef struct {
@@ -214,6 +224,10 @@
@@ -214,6 +224,9 @@
int8_t q_scale_type, scaled[4];
uint8_t quantizer_matrix[4][64];
uint8_t new_quantizer_matrix[4][64];
+
+ /* for MPlayer: */
+ unsigned char *pending_buffer;
+ int pending_length;
};

View File

@ -149,7 +149,6 @@ struct mpeg2_decoder_s {
int mpeg1;
/* for MPlayer: */
int quantizer_scales[32];
int quantizer_scale;
char* quant_store;
@ -225,7 +224,6 @@ struct mpeg2dec_s {
uint8_t quantizer_matrix[4][64];
uint8_t new_quantizer_matrix[4][64];
/* for MPlayer: */
unsigned char *pending_buffer;
int pending_length;
};