55 int render_x, render_y;
66 cols << 4, rows << 4);
71 if (render_x == 0 || render_x > cols ||
72 render_y == 0 || render_y > rows)
75 if (!
s->macroblocks ||
76 16*cols !=
s->avctx->coded_width ||
77 16*rows !=
s->avctx->coded_height) {
83 }
else if (!
s->macroblocks)
130 for (node=0; node<7; node++)
139 uint8_t def_prob[11];
144 memset(def_prob, 0x80,
sizeof(def_prob));
147 for (node=0; node<11; node++)
155 for (ct=0; ct<3; ct++)
157 for (cg=0; cg<6; cg++)
158 for (node=0; node<11; node++)
169 for (node=0; node<5; node++)
173 for (ct=0; ct<3; ct++)
175 for (cg=0; cg<3; cg++)
177 for (node=0; node<5; node++)
186 uint8_t *
permute =
s->idct_scantable;
187 uint8_t *model1, *model2;
188 int coeff, sign, coeff_idx;
189 int b,
i, cg, idx,
ctx, ctx_last;
197 for (
b=0;
b<6;
b++) {
203 +
s->above_blocks[
s->above_block_idx[
b]].not_null_dc;
257 if (coeff_idx < ctx_last)
258 for (
i=coeff_idx;
i<=ctx_last;
i++)
260 s->above_blocks[
s->above_block_idx[
b]].not_null_dc =
s->coeff_ctx[
ff_vp56_b6to4[
b]][0];
261 s->idct_selector[
b] = 63;
271 for (
i=0;
i<2;
i++) {
311 .priv_data_size =
sizeof(VP56Context),
const FFCodec ff_vp5_decoder
static av_cold void close(AVCodecParserContext *s)
Libavcodec external API header.
#define i(width, name, range_min, range_max)
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
static void permute(int16_t dst[64], const int16_t src[64], enum idct_permutation_type perm_type)
int ff_set_dimensions(AVCodecContext *s, int width, int height)
int(* init)(AVBSFContext *ctx)
static void comp(unsigned char *dst, ptrdiff_t dst_stride, unsigned char *src, ptrdiff_t src_stride, int add)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
main external API structure.
uint8_t coeff_dcct[2][36][5]
uint8_t coeff_acct[2][3][3][6][5]
uint8_t mb_types_stats[3][10][2]
uint8_t coeff_dccv[2][11]
uint8_t coeff_ract[2][3][6][11]
static AVFormatContext * ctx
static const double coeff[2][5]
av_cold int ff_vp56_init_context(AVCodecContext *avctx, VP56Context *s, int flip, int has_alpha)
Initializes an VP56Context.
av_cold int ff_vp56_free_context(VP56Context *s)
void ff_vp56_init_dequant(VP56Context *s, int quantizer)
int ff_vp56_decode_frame(AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
VP5 and VP6 compatible video decoder (common features)
static int vp56_rac_gets(VPXRangeCoder *c, int bits)
vp56 specific range coder implementation
static av_always_inline int vp56_rac_get_tree(VPXRangeCoder *c, const VP56Tree *tree, const uint8_t *probs)
static av_unused int vp56_rac_gets_nn(VPXRangeCoder *c, int bits)
const VP56Tree ff_vp56_pva_tree[]
const uint8_t ff_vp56_def_mb_types_stats[3][10][2]
const uint8_t ff_vp56_b6to4[]
const uint8_t ff_vp56_coeff_bias[]
const uint8_t ff_vp56_coeff_bit_length[]
const uint8_t ff_vp56_coeff_parse_table[6][11]
const VP56Tree ff_vp56_pc_tree[]
VP5 and VP6 compatible video decoder (common data)
void ff_vp5dsp_init(VP5DSPContext *s)
static av_cold int vp5_decode_init(AVCodecContext *avctx)
static void vp5_parse_vector_adjustment(VP56Context *s, VP56mv *vect)
static av_cold int vp56_free(AVCodecContext *avctx)
static int vp5_parse_header(VP56Context *s, const uint8_t *buf, int buf_size)
static void vp5_default_models_init(VP56Context *s)
static void vp5_parse_vector_models(VP56Context *s)
static int vp5_parse_coeff_models(VP56Context *s)
static int vp5_parse_coeff(VP56Context *s)
VP5 compatible video decoder.
static const uint8_t vp5_coord_div[]
static const uint8_t vp5_vmc_pct[2][11]
static const uint8_t vp5_ract_pct[3][2][6][11]
static const uint8_t vp5_dccv_pct[2][11]
static const uint8_t vp5_coeff_groups[]
static const int16_t vp5_dccv_lc[5][36][2]
static const int16_t vp5_ract_lc[3][3][5][6][2]
int ff_vpx_init_range_decoder(VPXRangeCoder *c, const uint8_t *buf, int buf_size)
Common VP5-VP9 range decoder stuff.
static av_always_inline int vpx_rac_get_prob_branchy(VPXRangeCoder *c, int prob)
static av_always_inline int vpx_rac_get(VPXRangeCoder *c)
static av_always_inline int vpx_rac_is_end(VPXRangeCoder *c)
returns 1 if the end of the stream has been reached, 0 otherwise.