Blame view

3rdparty/ffmpeg-4.4.4/libavutil/dovi_meta.h 2.21 KB
09c2d08c   Hu Chunming   arm交付版
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
  /*
   * Copyright (c) 2020 Vacing Fang <vacingfang@tencent.com>
   *
   * This file is part of FFmpeg.
   *
   * FFmpeg is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * FFmpeg is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with FFmpeg; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
   */
  
  /**
   * @file
   * DOVI configuration
   */
  
  
  #ifndef AVUTIL_DOVI_META_H
  #define AVUTIL_DOVI_META_H
  
  #include <stdint.h>
  #include <stddef.h>
  
  /*
   * DOVI configuration
   * ref: dolby-vision-bitstreams-within-the-iso-base-media-file-format-v2.1.2
          dolby-vision-bitstreams-in-mpeg-2-transport-stream-multiplex-v1.2
   * @code
   * uint8_t  dv_version_major, the major version number that the stream complies with
   * uint8_t  dv_version_minor, the minor version number that the stream complies with
   * uint8_t  dv_profile, the Dolby Vision profile
   * uint8_t  dv_level, the Dolby Vision level
   * uint8_t  rpu_present_flag
   * uint8_t  el_present_flag
   * uint8_t  bl_present_flag
   * uint8_t  dv_bl_signal_compatibility_id
   * @endcode
   *
   * @note The struct must be allocated with av_dovi_alloc() and
   *       its size is not a part of the public ABI.
   */
  typedef struct AVDOVIDecoderConfigurationRecord {
      uint8_t dv_version_major;
      uint8_t dv_version_minor;
      uint8_t dv_profile;
      uint8_t dv_level;
      uint8_t rpu_present_flag;
      uint8_t el_present_flag;
      uint8_t bl_present_flag;
      uint8_t dv_bl_signal_compatibility_id;
  } AVDOVIDecoderConfigurationRecord;
  
  /**
   * Allocate a AVDOVIDecoderConfigurationRecord structure and initialize its
   * fields to default values.
   *
   * @return the newly allocated struct or NULL on failure
   */
  AVDOVIDecoderConfigurationRecord *av_dovi_alloc(size_t *size);
  
  #endif /* AVUTIL_DOVI_META_H */