vp3.c File Reference

On2 VP3 Video Decoder. More...

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "internal.h"
#include "dsputil.h"
#include "get_bits.h"
#include "hpeldsp.h"
#include "videodsp.h"
#include "vp3data.h"
#include "vp3dsp.h"
#include "xiph.h"
#include "thread.h"
Include dependency graph for vp3.c:

Go to the source code of this file.

Data Structures

struct  Vp3Fragment
 
struct  Vp3DecodeContext
 

Macros

#define FRAGMENT_PIXELS   8
 
#define SB_NOT_CODED   0
 
#define SB_PARTIALLY_CODED   1
 
#define SB_FULLY_CODED   2
 
#define MAXIMUM_LONG_BIT_RUN   4129
 
#define MODE_INTER_NO_MV   0
 
#define MODE_INTRA   1
 
#define MODE_INTER_PLUS_MV   2
 
#define MODE_INTER_LAST_MV   3
 
#define MODE_INTER_PRIOR_LAST   4
 
#define MODE_USING_GOLDEN   5
 
#define MODE_GOLDEN_MV   6
 
#define MODE_INTER_FOURMV   7
 
#define CODING_MODE_COUNT   8
 
#define MODE_COPY   8
 
#define MIN_DEQUANT_VAL   2
 
#define TOKEN_EOB(eob_run)   ((eob_run) << 2)
 
#define TOKEN_ZERO_RUN(coeff, zero_run)   (((coeff) << 9) + ((zero_run) << 2) + 1)
 
#define TOKEN_COEFF(coeff)   (((coeff) << 2) + 2)
 
#define BLOCK_X   (2*mb_x + (k&1))
 
#define BLOCK_Y   (2*mb_y + (k>>1))
 
#define SET_CHROMA_MODES
 
#define COMPATIBLE_FRAME(x)   (compatible_frame[s->all_fragments[x].coding_method] == current_frame_type)
 
#define DC_COEFF(u)   s->all_fragments[u].dc
 
#define PUL   8
 
#define PU   4
 
#define PUR   2
 
#define PL   1
 
#define T(x)   (x >> 3) | ((x & 7) << 3)
 
#define copy_fields(to, from, start_field, end_field)   memcpy(&to->start_field, &from->start_field, (char*)&to->end_field - (char*)&to->start_field)
 

Typedefs

typedef struct Vp3Fragment Vp3Fragment
 
typedef struct Vp3DecodeContext Vp3DecodeContext
 

Functions

static int theora_decode_header (AVCodecContext *avctx, GetBitContext *gb)
 
static int theora_decode_tables (AVCodecContext *avctx, GetBitContext *gb)
 
static void vp3_decode_flush (AVCodecContext *avctx)
 
static av_cold int vp3_decode_end (AVCodecContext *avctx)
 
static int init_block_mapping (Vp3DecodeContext *s)
 This function sets up all of the various blocks mappings: superblocks <-> fragments, macroblocks <-> fragments, superblocks <-> macroblocks. More...
 
static void init_dequantizer (Vp3DecodeContext *s, int qpi)
 
static void init_loop_filter (Vp3DecodeContext *s)
 
static int unpack_superblocks (Vp3DecodeContext *s, GetBitContext *gb)
 
static int unpack_modes (Vp3DecodeContext *s, GetBitContext *gb)
 
static int unpack_vectors (Vp3DecodeContext *s, GetBitContext *gb)
 
static int unpack_block_qpis (Vp3DecodeContext *s, GetBitContext *gb)
 
static int unpack_vlcs (Vp3DecodeContext *s, GetBitContext *gb, VLC *table, int coeff_index, int plane, int eob_run)
 
static void reverse_dc_prediction (Vp3DecodeContext *s, int first_fragment, int fragment_width, int fragment_height)
 
static int unpack_dct_coeffs (Vp3DecodeContext *s, GetBitContext *gb)
 
static void apply_loop_filter (Vp3DecodeContext *s, int plane, int ystart, int yend)
 
static int vp3_dequant (Vp3DecodeContext *s, Vp3Fragment *frag, int plane, int inter, int16_t block[64])
 Pull DCT tokens from the 64 levels to decode and dequant the coefficients for the next block in coding order. More...
 
static void vp3_draw_horiz_band (Vp3DecodeContext *s, int y)
 called when all pixels up to row y are complete More...
 
static void await_reference_row (Vp3DecodeContext *s, Vp3Fragment *fragment, int motion_y, int y)
 Wait for the reference frame of the current fragment. More...
 
static void render_slice (Vp3DecodeContext *s, int slice)
 
static av_cold int allocate_tables (AVCodecContext *avctx)
 Allocate tables for per-frame data in Vp3DecodeContext. More...
 
static av_cold int init_frames (Vp3DecodeContext *s)
 
static av_cold int vp3_decode_init (AVCodecContext *avctx)
 
static int update_frames (AVCodecContext *avctx)
 Release and shuffle frames after decode finishes. More...
 
static int ref_frame (Vp3DecodeContext *s, ThreadFrame *dst, ThreadFrame *src)
 
static int ref_frames (Vp3DecodeContext *dst, Vp3DecodeContext *src)
 
static int vp3_update_thread_context (AVCodecContext *dst, const AVCodecContext *src)
 
static int vp3_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static int read_huffman_tree (AVCodecContext *avctx, GetBitContext *gb)
 
static int vp3_init_thread_copy (AVCodecContext *avctx)
 

Variables

static const int ModeAlphabet [6][CODING_MODE_COUNT]
 
static const uint8_t hilbert_offset [16][2]
 
AVCodec ff_vp3_decoder
 

Detailed Description

On2 VP3 Video Decoder.

VP3 Video Decoder by Mike Melanson (mike at multimedia.cx) For more information about the VP3 coding process, visit: http://wiki.multimedia.cx/index.php?title=On2_VP3

Theora decoder by Alex Beregszaszi

Definition in file vp3.c.

Macro Definition Documentation

#define BLOCK_X   (2*mb_x + (k&1))

Referenced by unpack_modes(), and unpack_vectors().

#define BLOCK_Y   (2*mb_y + (k>>1))

Referenced by unpack_modes(), and unpack_vectors().

#define CODING_MODE_COUNT   8

Definition at line 74 of file vp3.c.

Referenced by unpack_modes().

#define COMPATIBLE_FRAME (   x)    (compatible_frame[s->all_fragments[x].coding_method] == current_frame_type)

Definition at line 1135 of file vp3.c.

Referenced by reverse_dc_prediction().

#define copy_fields (   to,
  from,
  start_field,
  end_field 
)    memcpy(&to->start_field, &from->start_field, (char*)&to->end_field - (char*)&to->start_field)
#define DC_COEFF (   u)    s->all_fragments[u].dc

Definition at line 1137 of file vp3.c.

Referenced by reverse_dc_prediction().

#define FRAGMENT_PIXELS   8

Definition at line 48 of file vp3.c.

Referenced by vp3_decode_init().

#define MAXIMUM_LONG_BIT_RUN   4129

Definition at line 64 of file vp3.c.

Referenced by unpack_block_qpis(), and unpack_superblocks().

#define MIN_DEQUANT_VAL   2

Definition at line 131 of file vp3.c.

#define MODE_COPY   8
#define MODE_GOLDEN_MV   6

Definition at line 72 of file vp3.c.

Referenced by await_reference_row(), render_slice(), and unpack_vectors().

#define MODE_INTER_FOURMV   7

Definition at line 73 of file vp3.c.

Referenced by unpack_vectors().

#define MODE_INTER_LAST_MV   3

Definition at line 69 of file vp3.c.

Referenced by unpack_vectors().

#define MODE_INTER_NO_MV   0

Definition at line 66 of file vp3.c.

Referenced by unpack_modes(), and unpack_superblocks().

#define MODE_INTER_PLUS_MV   2

Definition at line 68 of file vp3.c.

Referenced by unpack_vectors().

#define MODE_INTER_PRIOR_LAST   4

Definition at line 70 of file vp3.c.

Referenced by unpack_vectors().

#define MODE_INTRA   1

Definition at line 67 of file vp3.c.

Referenced by render_slice(), and unpack_modes().

#define MODE_USING_GOLDEN   5

Definition at line 71 of file vp3.c.

Referenced by await_reference_row(), and render_slice().

#define PL   1

Referenced by reverse_dc_prediction().

#define PU   4

Referenced by reverse_dc_prediction().

#define PUL   8

Referenced by reverse_dc_prediction().

#define PUR   2

Referenced by reverse_dc_prediction().

#define SB_FULLY_CODED   2

Definition at line 59 of file vp3.c.

Referenced by unpack_superblocks().

#define SB_NOT_CODED   0

Definition at line 57 of file vp3.c.

Referenced by unpack_superblocks().

#define SB_PARTIALLY_CODED   1

Definition at line 58 of file vp3.c.

Referenced by unpack_superblocks().

#define SET_CHROMA_MODES
Value:
if (frag[s->fragment_start[1]].coding_method != MODE_COPY) \
frag[s->fragment_start[1]].coding_method = coding_mode;\
if (frag[s->fragment_start[2]].coding_method != MODE_COPY) \
frag[s->fragment_start[2]].coding_method = coding_mode;
const char * s
Definition: avisynth_c.h:668
initialize output if(nPeaks >3)%at least 3 peaks in spectrum for trying to find f0 nf0peaks
#define MODE_COPY
Definition: vp3.c:77

Referenced by unpack_modes().

#define T (   x)    (x >> 3) | ((x & 7) << 3)

Referenced by vp3_decode_init().

#define TOKEN_COEFF (   coeff)    (((coeff) << 2) + 2)

Definition at line 211 of file vp3.c.

Referenced by unpack_vlcs().

#define TOKEN_EOB (   eob_run)    ((eob_run) << 2)

Definition at line 209 of file vp3.c.

Referenced by unpack_vlcs().

#define TOKEN_ZERO_RUN (   coeff,
  zero_run 
)    (((coeff) << 9) + ((zero_run) << 2) + 1)

Definition at line 210 of file vp3.c.

Referenced by unpack_vlcs().

Typedef Documentation

typedef struct Vp3Fragment Vp3Fragment

Function Documentation

static av_cold int allocate_tables ( AVCodecContext avctx)
static

Allocate tables for per-frame data in Vp3DecodeContext.

Definition at line 1627 of file vp3.c.

Referenced by vp3_decode_init(), and vp3_update_thread_context().

static void apply_loop_filter ( Vp3DecodeContext s,
int  plane,
int  ystart,
int  yend 
)
static

Definition at line 1289 of file vp3.c.

Referenced by render_slice(), vc1_decode_p_blocks(), and vp3_decode_frame().

static void await_reference_row ( Vp3DecodeContext s,
Vp3Fragment fragment,
int  motion_y,
int  y 
)
static

Wait for the reference frame of the current fragment.

The progress value is in luma pixel rows.

Definition at line 1441 of file vp3.c.

Referenced by render_slice().

static int init_block_mapping ( Vp3DecodeContext s)
static

This function sets up all of the various blocks mappings: superblocks <-> fragments, macroblocks <-> fragments, superblocks <-> macroblocks.

Returns
0 is successful; returns 1 if anything went wrong.

Definition at line 327 of file vp3.c.

Referenced by allocate_tables().

static void init_dequantizer ( Vp3DecodeContext s,
int  qpi 
)
static

Definition at line 358 of file vp3.c.

Referenced by vp3_decode_frame().

static av_cold int init_frames ( Vp3DecodeContext s)
static

Definition at line 1658 of file vp3.c.

Referenced by vp3_decode_init(), and vp3_init_thread_copy().

static void init_loop_filter ( Vp3DecodeContext s)
static

Definition at line 399 of file vp3.c.

Referenced by vp3_decode_frame().

static int read_huffman_tree ( AVCodecContext avctx,
GetBitContext gb 
)
static

Definition at line 2134 of file vp3.c.

Referenced by vp3_init_thread_copy().

static int ref_frame ( Vp3DecodeContext s,
ThreadFrame dst,
ThreadFrame src 
)
static

Definition at line 1877 of file vp3.c.

Referenced by await_reference_row(), ref_frames(), vp56_add_predictors_dc(), and vp56_decode_mb().

static int ref_frames ( Vp3DecodeContext dst,
Vp3DecodeContext src 
)
static

Definition at line 1885 of file vp3.c.

Referenced by if(), and vp3_update_thread_context().

static void render_slice ( Vp3DecodeContext s,
int  slice 
)
static

Definition at line 1463 of file vp3.c.

Referenced by vp3_decode_frame().

static void reverse_dc_prediction ( Vp3DecodeContext s,
int  first_fragment,
int  fragment_width,
int  fragment_height 
)
static

Definition at line 1139 of file vp3.c.

Referenced by unpack_dct_coeffs(), and unpack_vlcs().

static int theora_decode_header ( AVCodecContext avctx,
GetBitContext gb 
)
static
static int theora_decode_tables ( AVCodecContext avctx,
GetBitContext gb 
)
static
static int unpack_block_qpis ( Vp3DecodeContext s,
GetBitContext gb 
)
static

Definition at line 865 of file vp3.c.

Referenced by vp3_decode_frame().

static int unpack_dct_coeffs ( Vp3DecodeContext s,
GetBitContext gb 
)
static

Definition at line 1043 of file vp3.c.

Referenced by vp3_decode_frame().

static int unpack_modes ( Vp3DecodeContext s,
GetBitContext gb 
)
static

Definition at line 582 of file vp3.c.

Referenced by vp3_decode_frame().

static int unpack_superblocks ( Vp3DecodeContext s,
GetBitContext gb 
)
static

Definition at line 428 of file vp3.c.

Referenced by vp3_decode_frame().

static int unpack_vectors ( Vp3DecodeContext s,
GetBitContext gb 
)
static

Definition at line 688 of file vp3.c.

Referenced by vp3_decode_frame().

static int unpack_vlcs ( Vp3DecodeContext s,
GetBitContext gb,
VLC table,
int  coeff_index,
int  plane,
int  eob_run 
)
static

Definition at line 919 of file vp3.c.

Referenced by unpack_dct_coeffs().

static int update_frames ( AVCodecContext avctx)
static

Release and shuffle frames after decode finishes.

Definition at line 1855 of file vp3.c.

Referenced by vp3_decode_frame(), and vp3_update_thread_context().

static av_cold int vp3_decode_end ( AVCodecContext avctx)
static

Definition at line 277 of file vp3.c.

Referenced by allocate_tables(), vp3_decode_frame(), and vp3_init_thread_copy().

static void vp3_decode_flush ( AVCodecContext avctx)
static

Definition at line 265 of file vp3.c.

Referenced by vp3_decode_end(), and vp3_init_thread_copy().

static int vp3_decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 1949 of file vp3.c.

Referenced by vp3_init_thread_copy().

static av_cold int vp3_decode_init ( AVCodecContext avctx)
static

Definition at line 1674 of file vp3.c.

Referenced by vp3_decode_frame(), and vp3_init_thread_copy().

static int vp3_dequant ( Vp3DecodeContext s,
Vp3Fragment frag,
int  plane,
int  inter,
int16_t  block[64] 
)
inlinestatic

Pull DCT tokens from the 64 levels to decode and dequant the coefficients for the next block in coding order.

Definition at line 1356 of file vp3.c.

Referenced by render_slice().

static void vp3_draw_horiz_band ( Vp3DecodeContext s,
int  y 
)
static

called when all pixels up to row y are complete

Definition at line 1401 of file vp3.c.

Referenced by render_slice(), and vp3_decode_frame().

static int vp3_init_thread_copy ( AVCodecContext avctx)
static

Definition at line 2169 of file vp3.c.

static int vp3_update_thread_context ( AVCodecContext dst,
const AVCodecContext src 
)
static

Definition at line 1895 of file vp3.c.

Referenced by vp3_init_thread_copy().

Variable Documentation

AVCodec ff_vp3_decoder
Initial value:
= {
.name = "vp3",
.priv_data_size = sizeof(Vp3DecodeContext),
.long_name = NULL_IF_CONFIG_SMALL("On2 VP3"),
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int vp3_decode_init(AVCodecContext *avctx)
Definition: vp3.c:1674
static av_cold int vp3_decode_end(AVCodecContext *avctx)
Definition: vp3.c:277
static void vp3_decode_flush(AVCodecContext *avctx)
Definition: vp3.c:265
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
static int vp3_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: vp3.c:1949
struct Vp3DecodeContext Vp3DecodeContext
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
#define CODEC_CAP_DRAW_HORIZ_BAND
Decoder can use draw_horiz_band callback.
static void flush(AVCodecContext *avctx)
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
#define CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
static int vp3_init_thread_copy(AVCodecContext *avctx)
Definition: vp3.c:2169
static int vp3_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
Definition: vp3.c:1895
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868

Definition at line 2473 of file vp3.c.

const uint8_t hilbert_offset[16][2]
static
Initial value:
= {
{0,0}, {1,0}, {1,1}, {0,1},
{0,2}, {0,3}, {1,3}, {1,2},
{2,2}, {2,3}, {3,3}, {3,2},
{3,1}, {2,1}, {2,0}, {3,0}
}

Definition at line 124 of file vp3.c.

Referenced by init_block_mapping(), and render_slice().

const int ModeAlphabet[6][CODING_MODE_COUNT]
static

Definition at line 84 of file vp3.c.

Referenced by unpack_modes().