FFmpeg
Loading...
Searching...
No Matches
proresdec.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010-2011 Maxim Poliakovski
3 * Copyright (c) 2010-2011 Elvis Presley
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_PRORESDEC_H
23#define AVCODEC_PRORESDEC_H
24
25#include <stdint.h>
26
27#include "get_bits.h"
28#include "blockdsp.h"
29#include "proresdsp.h"
30
31#include "libavutil/frame.h"
32#include "libavutil/pixfmt.h"
33
34typedef struct {
35 const uint8_t *data;
36 unsigned mb_x;
37 unsigned mb_y;
38 unsigned mb_count;
39 unsigned data_size;
40 int ret;
42
43typedef struct {
48 int frame_type; ///< 0 = progressive, 1 = tff, 2 = bff
49 uint8_t qmat_luma[64];
50 uint8_t qmat_chroma[64];
52 int slice_count; ///< number of slices in the current picture
53 unsigned mb_width; ///< width of the current picture in mb
54 unsigned mb_height; ///< height of the current picture in mb
55 unsigned slice_mb_width; ///< maximum width of a slice in mb
56 unsigned slice_mb_height; ///< maximum height of a slice in mb
57 uint8_t progressive_scan[64];
58 uint8_t interlaced_scan[64];
59 const uint8_t *scan;
62 void (*unpack_alpha)(GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits);
65
66#endif /* AVCODEC_PRORESDEC_H */
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
reference-counted frame API
bitstream reader API header.
pixel format definitions
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
unsigned mb_height
height of the current picture in mb
Definition proresdec.h:54
int slice_count
number of slices in the current picture
Definition proresdec.h:52
unsigned slice_mb_width
maximum width of a slice in mb
Definition proresdec.h:55
uint8_t qmat_luma[64]
Definition proresdec.h:49
BlockDSPContext bdsp
Definition proresdec.h:44
AVFrame * frame
Definition proresdec.h:46
enum AVPixelFormat pix_fmt
Definition proresdec.h:63
unsigned slice_mb_height
maximum height of a slice in mb
Definition proresdec.h:56
const uint8_t * scan
Definition proresdec.h:59
int frame_type
0 = progressive, 1 = tff, 2 = bff
Definition proresdec.h:48
uint8_t qmat_chroma[64]
Definition proresdec.h:50
SliceContext * slices
Definition proresdec.h:51
uint8_t interlaced_scan[64]
Definition proresdec.h:58
unsigned mb_width
width of the current picture in mb
Definition proresdec.h:53
void(* unpack_alpha)(GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits)
Definition proresdec.h:62
uint8_t progressive_scan[64]
Definition proresdec.h:57
void * hwaccel_picture_private
Definition proresdec.h:47
ProresDSPContext prodsp
Definition proresdec.h:45
unsigned mb_y
Definition proresdec.h:37
unsigned data_size
Definition proresdec.h:39
const uint8_t * data
Definition proresdec.h:35
unsigned mb_count
Definition proresdec.h:38
unsigned mb_x
Definition proresdec.h:36