1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 #ifndef _MPEG2_CTRLS_H_
  12 #define _MPEG2_CTRLS_H_
  13 
  14 #define V4L2_CID_MPEG_VIDEO_MPEG2_SLICE_PARAMS          (V4L2_CID_MPEG_BASE+250)
  15 #define V4L2_CID_MPEG_VIDEO_MPEG2_QUANTIZATION          (V4L2_CID_MPEG_BASE+251)
  16 
  17 
  18 #define V4L2_CTRL_TYPE_MPEG2_SLICE_PARAMS 0x0103
  19 #define V4L2_CTRL_TYPE_MPEG2_QUANTIZATION 0x0104
  20 
  21 #define V4L2_MPEG2_PICTURE_CODING_TYPE_I        1
  22 #define V4L2_MPEG2_PICTURE_CODING_TYPE_P        2
  23 #define V4L2_MPEG2_PICTURE_CODING_TYPE_B        3
  24 #define V4L2_MPEG2_PICTURE_CODING_TYPE_D        4
  25 
  26 struct v4l2_mpeg2_sequence {
  27         
  28         __u16   horizontal_size;
  29         __u16   vertical_size;
  30         __u32   vbv_buffer_size;
  31 
  32         
  33         __u16   profile_and_level_indication;
  34         __u8    progressive_sequence;
  35         __u8    chroma_format;
  36 };
  37 
  38 struct v4l2_mpeg2_picture {
  39         
  40         __u8    picture_coding_type;
  41 
  42         
  43         __u8    f_code[2][2];
  44         __u8    intra_dc_precision;
  45         __u8    picture_structure;
  46         __u8    top_field_first;
  47         __u8    frame_pred_frame_dct;
  48         __u8    concealment_motion_vectors;
  49         __u8    q_scale_type;
  50         __u8    intra_vlc_format;
  51         __u8    alternate_scan;
  52         __u8    repeat_first_field;
  53         __u16   progressive_frame;
  54 };
  55 
  56 struct v4l2_ctrl_mpeg2_slice_params {
  57         __u32   bit_size;
  58         __u32   data_bit_offset;
  59         __u64   backward_ref_ts;
  60         __u64   forward_ref_ts;
  61 
  62         struct v4l2_mpeg2_sequence sequence;
  63         struct v4l2_mpeg2_picture picture;
  64 
  65         
  66         __u32   quantiser_scale_code;
  67 };
  68 
  69 struct v4l2_ctrl_mpeg2_quantization {
  70         
  71         __u8    load_intra_quantiser_matrix;
  72         __u8    load_non_intra_quantiser_matrix;
  73         __u8    load_chroma_intra_quantiser_matrix;
  74         __u8    load_chroma_non_intra_quantiser_matrix;
  75 
  76         __u8    intra_quantiser_matrix[64];
  77         __u8    non_intra_quantiser_matrix[64];
  78         __u8    chroma_intra_quantiser_matrix[64];
  79         __u8    chroma_non_intra_quantiser_matrix[64];
  80 };
  81 
  82 #endif