2007-03-19 01:25:00 +02:00
|
|
|
/*
|
|
|
|
* VC3/DNxHD decoder.
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2007 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
|
2007-03-19 01:25:00 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVCODEC_DNXHDDATA_H
|
|
|
|
#define AVCODEC_DNXHDDATA_H
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2007-06-17 01:59:13 +03:00
|
|
|
#include <stdint.h>
|
2007-12-18 15:52:07 +02:00
|
|
|
#include "avcodec.h"
|
2021-08-01 08:36:09 +02:00
|
|
|
#include "libavutil/attributes.h"
|
2016-07-25 17:09:22 +02:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2021-08-01 08:36:09 +02:00
|
|
|
#include "libavutil/rational.h"
|
2007-06-17 01:59:13 +03:00
|
|
|
|
2015-10-03 18:59:15 +02:00
|
|
|
/** Additional profile info flags */
|
|
|
|
#define DNXHD_INTERLACED (1<<0)
|
2015-10-05 20:44:45 +02:00
|
|
|
#define DNXHD_MBAFF (1<<1)
|
|
|
|
#define DNXHD_444 (1<<2)
|
2015-10-03 18:59:15 +02:00
|
|
|
|
2016-02-14 07:44:32 +02:00
|
|
|
/** Frame headers, extra 0x00 added to end for parser */
|
|
|
|
#define DNXHD_HEADER_INITIAL 0x000002800100
|
|
|
|
#define DNXHD_HEADER_444 0x000002800200
|
|
|
|
|
2015-10-03 18:59:17 +02:00
|
|
|
/** Indicate that a CIDEntry value must be read in the bitstream */
|
|
|
|
#define DNXHD_VARIABLE 0
|
|
|
|
|
2012-09-27 11:19:53 +03:00
|
|
|
typedef struct CIDEntry {
|
2007-08-04 16:41:33 +03:00
|
|
|
int cid;
|
|
|
|
unsigned int width, height;
|
|
|
|
unsigned int frame_size;
|
|
|
|
unsigned int coding_unit_size;
|
2015-10-03 18:59:15 +02:00
|
|
|
uint16_t flags;
|
2007-08-04 16:41:33 +03:00
|
|
|
int index_bits;
|
|
|
|
int bit_depth;
|
2011-07-22 02:42:08 +03:00
|
|
|
int eob_index;
|
2007-10-08 15:28:36 +03:00
|
|
|
const uint8_t *luma_weight, *chroma_weight;
|
2007-08-04 16:41:33 +03:00
|
|
|
const uint8_t *dc_codes, *dc_bits;
|
|
|
|
const uint16_t *ac_codes;
|
2015-10-14 19:20:49 +02:00
|
|
|
const uint8_t *ac_bits, *ac_info;
|
2007-08-04 16:41:33 +03:00
|
|
|
const uint16_t *run_codes;
|
|
|
|
const uint8_t *run_bits, *run;
|
2014-04-14 23:35:25 +03:00
|
|
|
int bit_rates[5]; ///< Helper to choose variants, rounded to nearest 5Mb/s
|
2016-07-17 04:37:39 +02:00
|
|
|
AVRational packet_scale;
|
2007-08-04 16:41:33 +03:00
|
|
|
} CIDEntry;
|
|
|
|
|
2021-01-22 23:47:27 +02:00
|
|
|
const CIDEntry *ff_dnxhd_get_cid_table(int cid);
|
2011-07-20 20:58:27 +03:00
|
|
|
int ff_dnxhd_find_cid(AVCodecContext *avctx, int bit_depth);
|
2013-01-26 14:46:01 +03:00
|
|
|
void ff_dnxhd_print_profiles(AVCodecContext *avctx, int loglevel);
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2016-07-12 04:07:21 +02:00
|
|
|
static av_always_inline uint64_t ff_dnxhd_check_header_prefix_hr(uint64_t prefix)
|
|
|
|
{
|
|
|
|
uint64_t data_offset = prefix >> 16;
|
|
|
|
if ((prefix & 0xFFFF0000FFFFLL) == 0x0300 &&
|
|
|
|
data_offset >= 0x0280 && data_offset <= 0x2170 &&
|
2016-07-16 16:15:33 +02:00
|
|
|
(data_offset & 3) == 0)
|
2016-07-12 04:07:21 +02:00
|
|
|
return prefix;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-14 07:44:32 +02:00
|
|
|
static av_always_inline uint64_t ff_dnxhd_check_header_prefix(uint64_t prefix)
|
|
|
|
{
|
|
|
|
if (prefix == DNXHD_HEADER_INITIAL ||
|
|
|
|
prefix == DNXHD_HEADER_444 ||
|
2016-07-12 04:07:21 +02:00
|
|
|
ff_dnxhd_check_header_prefix_hr(prefix))
|
2016-02-14 07:44:32 +02:00
|
|
|
return prefix;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-07-25 17:09:22 +02:00
|
|
|
static av_always_inline uint64_t ff_dnxhd_parse_header_prefix(const uint8_t *buf)
|
|
|
|
{
|
|
|
|
uint64_t prefix = AV_RB32(buf);
|
|
|
|
prefix = (prefix << 16) | buf[4] << 8;
|
|
|
|
return ff_dnxhd_check_header_prefix(prefix);
|
|
|
|
}
|
|
|
|
|
2021-11-09 16:35:22 +02:00
|
|
|
int ff_dnxhd_get_frame_size(int cid);
|
|
|
|
int ff_dnxhd_get_hr_frame_size(int cid, int w, int h);
|
2017-11-11 06:41:16 +02:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVCODEC_DNXHDDATA_H */
|