summaryrefslogtreecommitdiffstats
path: root/decoder/ih264d_vui.h
blob: b882f724e60904cf5c18e0e374ed8b04645bdf06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/******************************************************************************
 *
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 *****************************************************************************
 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
*/

/*****************************************************************************/
/*                                                                           */
/*  File Name         : ih264d_vui.h                                                */
/*                                                                           */
/*  Description       : This file contains routines to parse SEI NAL's       */
/*                                                                           */
/*  List of Functions : <List the functions defined in this file>            */
/*                                                                           */
/*  Issues / Problems : None                                                 */
/*                                                                           */
/*  Revision History  :                                                      */
/*                                                                           */
/*         DD MM YYYY   Author(s)       Changes (Describe the changes made)  */
/*         25 05 2005   NS              Draft                                */
/*                                                                           */
/*****************************************************************************/

#ifndef _IH264D_VUI_H_
#define _IH264D_VUI_H_

#include "ih264_typedefs.h"
#include "ih264_macros.h"
#include "ih264_platform_macros.h"
#include "ih264d_bitstrm.h"

#define VUI_EXTENDED_SAR    255

typedef struct
{
    UWORD32 u4_cpb_cnt;
    UWORD8 u1_bit_rate_scale;
    UWORD8 u1_cpb_size_scale;
    UWORD32 u4_bit_rate[32];
    UWORD32 u4_cpb_size[32];
    UWORD8 u1_cbr_flag[32];
    UWORD8 u1_initial_cpb_removal_delay;
    UWORD8 u1_cpb_removal_delay_length;
    UWORD8 u1_dpb_output_delay_length;
    UWORD8 u1_time_offset_length;
} hrd_t;

typedef struct
{
    UWORD8 u1_aspect_ratio_idc;
    UWORD16 u2_sar_width;
    UWORD16 u2_sar_height;
    UWORD8 u1_overscan_appropriate_flag;
    UWORD8 u1_video_format;
    UWORD8 u1_video_full_range_flag;
    UWORD8 u1_colour_primaries;
    UWORD8 u1_tfr_chars;
    UWORD8 u1_matrix_coeffs;
    UWORD8 u1_cr_top_field;
    UWORD8 u1_cr_bottom_field;
    UWORD32 u4_num_units_in_tick;
    UWORD32 u4_time_scale;
    UWORD8 u1_fixed_frame_rate_flag;
    UWORD8 u1_nal_hrd_params_present;
    hrd_t s_nal_hrd;
    UWORD8 u1_vcl_hrd_params_present;
    hrd_t s_vcl_hrd;
    UWORD8 u1_low_delay_hrd_flag;
    UWORD8 u1_pic_struct_present_flag;
    UWORD8 u1_bitstream_restriction_flag;
    UWORD8 u1_mv_over_pic_boundaries_flag;
    UWORD32 u4_max_bytes_per_pic_denom;
    UWORD32 u4_max_bits_per_mb_denom;
    UWORD32 u4_log2_max_mv_length_horz;
    UWORD32 u4_log2_max_mv_length_vert;
    UWORD32 u4_num_reorder_frames;
    UWORD32 u4_max_dec_frame_buffering;
} vui_t;

WORD32 ih264d_parse_vui_parametres(vui_t *ps_vu4,
                                   dec_bit_stream_t *ps_bitstrm);
#endif /* _SEI_H_ */