FFmpeg
|
Known FOURCCs: 'apch' (HQ), 'apcn' (SD), 'apcs' (LT), 'acpo' (Proxy), 'ap4h' (4444) More...
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "simple_idct.h"
#include "proresdec.h"
Go to the source code of this file.
Macros | |
#define | LONG_BITSTREAM_READER |
#define | DECODE_CODEWORD(val, codebook) |
#define | TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1))) |
#define | FIRST_DC_CB 0xB8 |
Functions | |
static void | permute (uint8_t *dst, const uint8_t *src, const uint8_t permutation[64]) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static int | decode_frame_header (ProresContext *ctx, const uint8_t *buf, const int data_size, AVCodecContext *avctx) |
static int | decode_picture_header (AVCodecContext *avctx, const uint8_t *buf, const int buf_size) |
static av_always_inline void | decode_dc_coeffs (GetBitContext *gb, int16_t *out, int blocks_per_slice) |
static av_always_inline void | decode_ac_coeffs (AVCodecContext *avctx, GetBitContext *gb, int16_t *out, int blocks_per_slice) |
static void | decode_slice_luma (AVCodecContext *avctx, SliceContext *slice, uint16_t *dst, int dst_stride, const uint8_t *buf, unsigned buf_size, const int16_t *qmat) |
static void | decode_slice_chroma (AVCodecContext *avctx, SliceContext *slice, uint16_t *dst, int dst_stride, const uint8_t *buf, unsigned buf_size, const int16_t *qmat, int log2_blocks_per_mb) |
static int | decode_slice_thread (AVCodecContext *avctx, void *arg, int jobnr, int threadnr) |
static int | decode_picture (AVCodecContext *avctx) |
static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static av_cold int | decode_close (AVCodecContext *avctx) |
Variables | |
static const uint8_t | progressive_scan [64] |
static const uint8_t | interlaced_scan [64] |
static const uint8_t | dc_codebook [7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70} |
static const uint8_t | run_to_cb [16] = { 0x06, 0x06, 0x05, 0x05, 0x04, 0x29, 0x29, 0x29, 0x29, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x4C } |
static const uint8_t | lev_to_cb [10] = { 0x04, 0x0A, 0x05, 0x06, 0x04, 0x28, 0x28, 0x28, 0x28, 0x4C } |
AVCodec | ff_prores_decoder |
Detailed Description
Known FOURCCs: 'apch' (HQ), 'apcn' (SD), 'apcs' (LT), 'acpo' (Proxy), 'ap4h' (4444)
Definition in file proresdec2.c.
Macro Definition Documentation
#define DECODE_CODEWORD | ( | val, | |
codebook | |||
) |
Definition at line 257 of file proresdec2.c.
Referenced by decode_ac_coeffs(), and decode_dc_coeffs().
#define FIRST_DC_CB 0xB8 |
Definition at line 289 of file proresdec2.c.
Referenced by decode_dc_coeffs().
#define LONG_BITSTREAM_READER |
Definition at line 29 of file proresdec2.c.
Definition at line 287 of file proresdec2.c.
Referenced by decode_dc_coeffs().
Function Documentation
|
static |
Definition at line 323 of file proresdec2.c.
Referenced by decode_slice_chroma(), and decode_slice_luma().
|
static |
Definition at line 578 of file proresdec2.c.
|
static |
Definition at line 293 of file proresdec2.c.
Referenced by decode_slice_chroma(), and decode_slice_luma().
|
static |
Definition at line 521 of file proresdec2.c.
|
static |
Definition at line 85 of file proresdec2.c.
Referenced by decode_frame().
|
static |
Definition at line 66 of file proresdec2.c.
|
static |
Definition at line 507 of file proresdec2.c.
Referenced by decode_frame().
|
static |
Definition at line 156 of file proresdec2.c.
Referenced by decode_frame().
|
static |
Definition at line 395 of file proresdec2.c.
Referenced by decode_slice_thread().
|
static |
Definition at line 365 of file proresdec2.c.
Referenced by decode_slice_thread().
|
static |
Definition at line 425 of file proresdec2.c.
Referenced by decode_picture().
Definition at line 37 of file proresdec2.c.
Referenced by decode_frame_header(), and decode_init().
Variable Documentation
|
static |
Definition at line 291 of file proresdec2.c.
Referenced by decode_dc_coeffs().
AVCodec ff_prores_decoder |
Definition at line 587 of file proresdec2.c.
|
static |
Definition at line 55 of file proresdec2.c.
Referenced by decode_init().
|
static |
Definition at line 321 of file proresdec2.c.
Referenced by decode_ac_coeffs().
|
static |
Definition at line 44 of file proresdec2.c.
Referenced by decode_init().
|
static |
Definition at line 320 of file proresdec2.c.
Referenced by decode_ac_coeffs().
Generated on Fri Dec 20 2024 06:56:15 for FFmpeg by 1.8.11