diff options
author | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-30 20:50:33 +0000 |
---|---|---|
committer | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-30 20:50:33 +0000 |
commit | 31642e274476f8a068e0110675b2ad16b345ec78 (patch) | |
tree | bec8990c3a1390298de5a9e89ffc7c15d40d5224 /libmpeg2 | |
parent | d200725e8801ae1afb64f8a5c09f271fcc4d9653 (diff) | |
download | mpv-31642e274476f8a068e0110675b2ad16b345ec78.tar.bz2 mpv-31642e274476f8a068e0110675b2ad16b345ec78.tar.xz |
change qscale type to int8 and fix qscale ordering
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7985 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2')
-rw-r--r-- | libmpeg2/mpeg2_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpeg2/mpeg2_internal.h b/libmpeg2/mpeg2_internal.h index be883bd613..6f1c48425b 100644 --- a/libmpeg2/mpeg2_internal.h +++ b/libmpeg2/mpeg2_internal.h @@ -59,7 +59,7 @@ typedef struct vo_frame_s { #ifdef MPEG12_POSTPROC #define MPEG2_MBC 120 #define MPEG2_MBR 72 - int quant_store[MPEG2_MBR+1][MPEG2_MBC+1]; + int8_t quant_store[MPEG2_MBR+1][MPEG2_MBC+1]; #endif // int slice; |