summaryrefslogtreecommitdiffstats
path: root/libmpeg2/mpeg2_internal.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-07 16:32:54 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-07 16:32:54 +0000
commit2563ac95f0642cde33c1dc911027d31a5a117802 (patch)
tree9b1a468037c3e78069dbc5e9aeeeb4a9da5c5089 /libmpeg2/mpeg2_internal.h
parente3ae844c0ee4751b74268b9aba0b585fc364f2eb (diff)
downloadmpv-2563ac95f0642cde33c1dc911027d31a5a117802.tar.bz2
mpv-2563ac95f0642cde33c1dc911027d31a5a117802.tar.xz
quant_store moved to frame struct
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5516 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2/mpeg2_internal.h')
-rw-r--r--libmpeg2/mpeg2_internal.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/libmpeg2/mpeg2_internal.h b/libmpeg2/mpeg2_internal.h
index ce33778545..be883bd613 100644
--- a/libmpeg2/mpeg2_internal.h
+++ b/libmpeg2/mpeg2_internal.h
@@ -56,6 +56,12 @@ typedef struct vo_frame_s {
void (* copy) (struct vo_frame_s * frame, uint8_t ** src);
void* vo;
void* mpi;
+#ifdef MPEG12_POSTPROC
+#define MPEG2_MBC 120
+#define MPEG2_MBR 72
+ int quant_store[MPEG2_MBR+1][MPEG2_MBC+1];
+#endif
+
// int slice;
// void (* field) (struct vo_frame_s * frame, int flags);
// void (* draw) (struct vo_frame_s * frame);
@@ -219,7 +225,3 @@ void mpeg2_allocate_image_buffers(picture_t * picture);
void mpeg2_free_image_buffers (picture_t * picture);
-#ifdef MPEG12_POSTPROC
-#define MPEG2_MBC 120
-#define MPEG2_MBR 72
-#endif