summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.h
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2009-01-30 17:15:08 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-01-30 17:15:08 +0000
commitf92a6c66ed2dfb4c421934984b1869b21cb961dc (patch)
tree1d199362fa9462d33d901bd686d435ede24c106d /libavcodec/vc1.h
parent3021a8a70b44096aef84cc4656ff804028c57973 (diff)
Record B-fraction index from frame header and two fields from entry point structure
into VC-1 context. Patch by Gwenole Beauchesne (gbeauchesne <whirlpool> splitted <dash> desktop <dit> com) Thread [PATCH][VC-1] Record extra syntax elements for VA API support Originally committed as revision 16859 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r--libavcodec/vc1.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h
index 212842a06f..67cdc7ae64 100644
--- a/libavcodec/vc1.h
+++ b/libavcodec/vc1.h
@@ -307,6 +307,9 @@ typedef struct VC1Context{
int x8_type;
uint32_t *cbp_base, *cbp;
+ uint8_t bfraction_lut_index;///< Index for BFRACTION value (see Table 40, reproduced into ff_vc1_bfraction_lut[])
+ uint8_t broken_link; ///< Broken link flag (BROKEN_LINK syntax element)
+ uint8_t closed_entry; ///< Closed entry point flag (CLOSED_ENTRY syntax element)
} VC1Context;
#endif /* AVCODEC_VC1_H */