diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-02-09 07:13:22 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-02-09 07:13:22 +0000 |
commit | 8700c75544d88f1479d5455b5b2788921d4dd5ee (patch) | |
tree | 7a80e2b00e4e7294c7d7ca1440c4d136ccf12998 /src/libmpeg2/mpeg2_internal.h | |
parent | 2f8fed75fc94e7afe89f7b60586f7cb55737efe1 (diff) | |
download | xine-lib-8700c75544d88f1479d5455b5b2788921d4dd5ee.tar.gz xine-lib-8700c75544d88f1479d5455b5b2788921d4dd5ee.tar.bz2 |
the long-awaited video_out changes, not completely debuged (races)
- pts are 64 bit now
- scr and video_out-loop run all the time
- video_out cleanups
- metronom cleanups
- buffer type BUF_CONTROL_DISCONTINUITY is used internally now,
input plugins should no longer send this one
- support for individual frame durations
- using nano-/usleep instead of itimer (simpler code, maybe this will
help freebsd)
CVS patchset: 1487
CVS date: 2002/02/09 07:13:22
Diffstat (limited to 'src/libmpeg2/mpeg2_internal.h')
-rw-r--r-- | src/libmpeg2/mpeg2_internal.h | 10 |
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); |