FFmpeg
|
#include <inttypes.h>
#include "libavutil/imgutils.h"
#include "libavutil/thread.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
#include "error_resilience.h"
#include "h263.h"
#include "h263data.h"
#include "h263dec.h"
#include "mpeg_er.h"
#include "mpegvideo.h"
#include "mpegvideodec.h"
#include "mpeg4video.h"
#include "mpegvideodata.h"
#include "rv10dec.h"
Go to the source code of this file.
Data Structures | |
struct | RVDecContext |
Macros | |
#define | RV_GET_MAJOR_VER(x) ((x) >> 28) |
#define | RV_GET_MINOR_VER(x) (((x) >> 20) & 0xFF) |
#define | RV_GET_MICRO_VER(x) (((x) >> 12) & 0xFF) |
#define | MAX_VLC_ENTRIES 1023 |
#define | DC_VLC_BITS 9 |
#define | ERROR_SKIP_FRAME -123 |
Functions | |
int | ff_rv_decode_dc (MpegEncContext *s, int n) |
static int | rv10_decode_picture_header (MpegEncContext *s) |
static int | rv20_decode_picture_header (RVDecContext *rv, int whole_size) |
static av_cold void | rv10_build_vlc (VLC *vlc, const uint16_t len_count[15], const uint8_t sym_rl[][2], int sym_rl_elems) |
static av_cold void | rv10_init_static (void) |
static av_cold int | rv10_decode_init (AVCodecContext *avctx) |
static int | rv10_decode_packet (AVCodecContext *avctx, const uint8_t *buf, int buf_size, int buf_size2, int whole_size) |
static int | get_slice_offset (AVCodecContext *avctx, const uint8_t *buf, int n) |
static int | rv10_decode_frame (AVCodecContext *avctx, AVFrame *pict, int *got_frame, AVPacket *avpkt) |
Variables | |
static const uint8_t | rv_sym_run_len [][2] |
static const uint16_t | rv_lum_len_count [15] |
static const uint16_t | rv_chrom_len_count [15] |
static VLC | rv_dc_lum |
static VLC | rv_dc_chrom |
const FFCodec | ff_rv10_decoder |
const FFCodec | ff_rv20_decoder |
RV10/RV20 decoder
Definition in file rv10.c.
#define ERROR_SKIP_FRAME -123 |
int ff_rv_decode_dc | ( | MpegEncContext * | s, |
int | n | ||
) |
Definition at line 83 of file rv10.c.
Referenced by h263_decode_block().
|
static |
Definition at line 100 of file rv10.c.
Referenced by rv10_decode_packet().
|
static |
Definition at line 158 of file rv10.c.
Referenced by rv10_decode_packet().
|
static |
Definition at line 305 of file rv10.c.
Referenced by rv10_init_static().
|
static |
Definition at line 326 of file rv10.c.
Referenced by rv10_decode_init().
|
static |
|
static |
Definition at line 408 of file rv10.c.
Referenced by rv10_decode_frame().
|
static |
Definition at line 547 of file rv10.c.
Referenced by rv10_decode_frame().
|
static |
|
static |
Definition at line 64 of file rv10.c.
Referenced by rv10_init_static().
|
static |
Definition at line 73 of file rv10.c.
Referenced by rv10_init_static().
|
static |
Definition at line 77 of file rv10.c.
Referenced by rv10_init_static().
|
static |
Definition at line 81 of file rv10.c.
Referenced by ff_rv_decode_dc(), and rv10_init_static().
|
static |
Definition at line 81 of file rv10.c.
Referenced by ff_rv_decode_dc(), and rv10_init_static().
const FFCodec ff_rv10_decoder |
const FFCodec ff_rv20_decoder |