• Home
  • Raw
  • Download

Lines Matching defs:SequenceHeader

258 typedef struct SequenceHeader {  struct
259 int num_bits_width;
260 int num_bits_height;
261 int max_frame_width;
262 int max_frame_height;
267 uint8_t frame_id_numbers_present_flag;
268 int frame_id_length;
269 int delta_frame_id_length;
270 BLOCK_SIZE sb_size; // Size of the superblock used for this frame
271 int mib_size; // Size of the superblock in units of MI blocks
272 int mib_size_log2; // Log 2 of above.
274 OrderHintInfo order_hint_info;
276 uint8_t force_screen_content_tools; // 0 - force off
279 uint8_t still_picture; // Video is a single frame still picture
280 uint8_t reduced_still_picture_hdr; // Use reduced header for still picture
281 uint8_t force_integer_mv; // 0 - Don't force. MV can use subpel
284 uint8_t enable_filter_intra; // enables/disables filterintra
285 uint8_t enable_intra_edge_filter; // enables/disables edge upsampling
286 uint8_t enable_interintra_compound; // enables/disables interintra_compound
287 uint8_t enable_masked_compound; // enables/disables masked compound
288 uint8_t enable_dual_filter; // 0 - disable dual interpolation filter
290 uint8_t enable_warped_motion; // 0 - disable warp for the sequence
292 uint8_t enable_superres; // 0 - Disable superres for the sequence
296 uint8_t enable_cdef; // To turn on/off CDEF
297 uint8_t enable_restoration; // To turn on/off loop restoration
298 BITSTREAM_PROFILE profile;
301 aom_bit_depth_t bit_depth; // AOM_BITS_8 in profile 0 or 1,
303 uint8_t use_highbitdepth; // If true, we need to use 16bit frame buffers.
304 uint8_t monochrome; // Monochrome video
305 aom_color_primaries_t color_primaries;
306 aom_transfer_characteristics_t transfer_characteristics;
330 } SequenceHeader; argument