summaryrefslogtreecommitdiff
path: root/src/libmpeg2/mpeg2_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmpeg2/mpeg2_internal.h')
-rw-r--r--src/libmpeg2/mpeg2_internal.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/libmpeg2/mpeg2_internal.h b/src/libmpeg2/mpeg2_internal.h
index fcb70368b..767be0093 100644
--- a/src/libmpeg2/mpeg2_internal.h
+++ b/src/libmpeg2/mpeg2_internal.h
@@ -91,6 +91,9 @@ typedef struct picture_s {
/* what type of picture this is (I, P, B, D) */
int picture_coding_type;
+
+ int vbv_delay;
+ int low_delay;
/* picture coding extension stuff */
@@ -107,6 +110,8 @@ typedef struct picture_s {
int q_scale_type;
/* bool to use different vlc tables */
int intra_vlc_format;
+ /* last macroblock in the picture */
+ int last_mba;
/* used for DMV MC */
int top_field_first;
@@ -132,11 +137,10 @@ typedef struct picture_s {
/* this is a temporary interface, we will build a better one later. */
int aspect_ratio_information;
int frame_rate_code;
- int frame_duration;
int progressive_sequence;
int repeat_first_field;
int progressive_frame;
- int bitrate;
+ /*int bitrate; */
uint32_t frame_centre_horizontal_offset;
uint32_t frame_centre_vertical_offset;
uint32_t video_format;
@@ -222,7 +226,7 @@ extern mc_functions_t mc_functions_altivec;
extern mc_functions_t mc_functions_mlib;
/* slice.c */
-void slice_process (picture_t *picture, uint8_t code, uint8_t * buffer);
+int slice_process (picture_t *picture, uint8_t code, uint8_t * buffer);
/* stats.c */
void stats_header (uint8_t code, uint8_t * buffer);