diff options
author | Christian König <[email protected]> | 2011-08-24 22:51:31 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-08-26 12:10:35 +0200 |
commit | 9765dede7556f7ccfef1d90bab14a2bfa03384e5 (patch) | |
tree | 3d565f743549bdcf963383ff316accb872779cbd /src/gallium/include | |
parent | 31096e13f858daf896c0c53077fb25e92da089a6 (diff) |
g3dvl: Rewrite the mpeg 1&2 bitstream parser
Based on work of Maarten Lankhorst this time.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Younes Manton <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_video_state.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_video_state.h b/src/gallium/include/pipe/p_video_state.h index 8166ac76b63..f655ed411f4 100644 --- a/src/gallium/include/pipe/p_video_state.h +++ b/src/gallium/include/pipe/p_video_state.h @@ -44,6 +44,17 @@ struct pipe_video_rect }; /* + * see table 6-12 in the spec + */ +enum pipe_mpeg12_picture_coding_type +{ + PIPE_MPEG12_PICTURE_CODING_TYPE_I = 0x01, + PIPE_MPEG12_PICTURE_CODING_TYPE_P = 0x02, + PIPE_MPEG12_PICTURE_CODING_TYPE_B = 0x03, + PIPE_MPEG12_PICTURE_CODING_TYPE_D = 0x04 +}; + +/* * see table 6-14 in the spec */ enum pipe_mpeg12_picture_structure |