FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dnxhddata.h
Go to the documentation of this file.
1 /*
2  * VC3/DNxHD decoder.
3  * Copyright (c) 2007 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #ifndef AVCODEC_DNXHDDATA_H
23 #define AVCODEC_DNXHDDATA_H
24 
25 #include <stdint.h>
26 #include "avcodec.h"
27 #include "libavutil/internal.h"
28 #include "libavutil/intreadwrite.h"
29 
30 /** Additional profile info flags */
31 #define DNXHD_INTERLACED (1<<0)
32 #define DNXHD_MBAFF (1<<1)
33 #define DNXHD_444 (1<<2)
34 
35 /** Frame headers, extra 0x00 added to end for parser */
36 #define DNXHD_HEADER_INITIAL 0x000002800100
37 #define DNXHD_HEADER_444 0x000002800200
38 
39 /** Indicate that a CIDEntry value must be read in the bitstream */
40 #define DNXHD_VARIABLE 0
41 
42 typedef struct CIDEntry {
43  int cid;
44  unsigned int width, height;
45  unsigned int frame_size;
46  unsigned int coding_unit_size;
47  uint16_t flags;
49  int bit_depth;
50  int eob_index;
53  const uint16_t *ac_codes;
55  const uint16_t *run_codes;
56  const uint8_t *run_bits, *run;
57  int bit_rates[5]; ///< Helper to choose variants, rounded to nearest 5Mb/s
60 } CIDEntry;
61 
62 extern const CIDEntry ff_dnxhd_cid_table[];
63 
64 int ff_dnxhd_get_cid_table(int cid);
66 void ff_dnxhd_print_profiles(AVCodecContext *avctx, int loglevel);
67 
68 static av_always_inline uint64_t ff_dnxhd_check_header_prefix_hr(uint64_t prefix)
69 {
70  uint64_t data_offset = prefix >> 16;
71  if ((prefix & 0xFFFF0000FFFFLL) == 0x0300 &&
72  data_offset >= 0x0280 && data_offset <= 0x2170 &&
73  (data_offset & 3) == 0)
74  return prefix;
75  return 0;
76 }
77 
78 static av_always_inline uint64_t ff_dnxhd_check_header_prefix(uint64_t prefix)
79 {
80  if (prefix == DNXHD_HEADER_INITIAL ||
81  prefix == DNXHD_HEADER_444 ||
83  return prefix;
84  return 0;
85 }
86 
88 {
89  uint64_t prefix = AV_RB32(buf);
90  prefix = (prefix << 16) | buf[4] << 8;
91  return ff_dnxhd_check_header_prefix(prefix);
92 }
93 
94 static av_always_inline int ff_dnxhd_get_hr_frame_size(int cid, int w, int h)
95 {
96  int result, i = ff_dnxhd_get_cid_table(cid);
97 
98  if (i < 0)
99  return i;
100 
101  result = ((h + 15) / 16) * ((w + 15) / 16) * (int64_t)ff_dnxhd_cid_table[i].packet_scale.num / ff_dnxhd_cid_table[i].packet_scale.den;
102  result = (result + 2048) / 4096 * 4096;
103 
104  return FFMAX(result, 8192);
105 }
106 
107 int avpriv_dnxhd_get_frame_size(int cid);
108 int avpriv_dnxhd_get_interlaced(int cid);
109 #if LIBAVCODEC_VERSION_MAJOR < 58
112 #endif
113 #endif /* AVCODEC_DNXHDDATA_H */
static av_always_inline uint64_t ff_dnxhd_check_header_prefix(uint64_t prefix)
Definition: dnxhddata.h:78
AVRational frame_rates[5]
Definition: dnxhddata.h:58
#define DNXHD_HEADER_INITIAL
Frame headers, extra 0x00 added to end for parser.
Definition: dnxhddata.h:36
const uint8_t * dc_bits
Definition: dnxhddata.h:52
attribute_deprecated uint64_t avpriv_dnxhd_parse_header_prefix(const uint8_t *buf)
Definition: dnxhddata.c:1116
const uint8_t * luma_weight
Definition: dnxhddata.h:51
int avpriv_dnxhd_get_interlaced(int cid)
Definition: dnxhddata.c:1107
const uint16_t * run_codes
Definition: dnxhddata.h:55
int avpriv_dnxhd_get_frame_size(int cid)
Definition: dnxhddata.c:1099
uint16_t flags
Definition: dnxhddata.h:47
uint8_t
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:87
const uint8_t * run_bits
Definition: dnxhddata.h:56
unsigned int coding_unit_size
Definition: dnxhddata.h:46
const uint8_t * ac_bits
Definition: dnxhddata.h:54
const uint8_t * ac_info
Definition: dnxhddata.h:54
const uint16_t * ac_codes
Definition: dnxhddata.h:53
unsigned int width
Definition: dnxhddata.h:44
AVRational packet_scale
Definition: dnxhddata.h:59
const uint8_t * dc_codes
Definition: dnxhddata.h:52
#define FFMAX(a, b)
Definition: common.h:94
static av_always_inline uint64_t ff_dnxhd_parse_header_prefix(const uint8_t *buf)
Definition: dnxhddata.h:87
const uint8_t * chroma_weight
Definition: dnxhddata.h:51
common internal API header
const uint8_t * run
Definition: dnxhddata.h:56
void ff_dnxhd_print_profiles(AVCodecContext *avctx, int loglevel)
Definition: dnxhddata.c:1169
static av_always_inline int ff_dnxhd_get_hr_frame_size(int cid, int w, int h)
Definition: dnxhddata.h:94
static void bit_depth(AudioStatsContext *s, uint64_t mask, uint64_t imask, AVRational *depth)
Definition: af_astats.c:152
int ff_dnxhd_find_cid(AVCodecContext *avctx, int bit_depth)
Definition: dnxhddata.c:1139
int bit_depth
Definition: dnxhddata.h:49
int index_bits
Definition: dnxhddata.h:48
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1761
void * buf
Definition: avisynth_c.h:690
int eob_index
Definition: dnxhddata.h:50
Rational number (pair of numerator and denominator).
Definition: rational.h:58
static av_always_inline uint64_t ff_dnxhd_check_header_prefix_hr(uint64_t prefix)
Definition: dnxhddata.h:68
unsigned int height
Definition: dnxhddata.h:44
unsigned int frame_size
Definition: dnxhddata.h:45
#define attribute_deprecated
Definition: attributes.h:94
int den
Denominator.
Definition: rational.h:60
#define DNXHD_HEADER_444
Definition: dnxhddata.h:37
const CIDEntry ff_dnxhd_cid_table[]
Definition: dnxhddata.c:935
int bit_rates[5]
Helper to choose variants, rounded to nearest 5Mb/s.
Definition: dnxhddata.h:57
#define av_always_inline
Definition: attributes.h:39
int cid
Definition: dnxhddata.h:43
int ff_dnxhd_get_cid_table(int cid)
Definition: dnxhddata.c:1090