|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/imgutils.h"#include "libavutil/internal.h"#include "libavutil/pixdesc.h"#include "avcodec.h"#include "dv.h"#include "dv_profile_internal.h"#include "dvdata.h"#include "get_bits.h"#include "idctdsp.h"#include "internal.h"#include "put_bits.h"#include "simple_idct.h"#include "thread.h"Go to the source code of this file.
Data Structures | |
| struct | BlockInfo |
Functions | |
| static void | dv_init_weight_tables (DVVideoContext *ctx, const AVDVProfile *d) |
| static av_cold int | dvvideo_decode_init (AVCodecContext *avctx) |
| static void | dv_decode_ac (GetBitContext *gb, BlockInfo *mb, int16_t *block) |
| static void | bit_copy (PutBitContext *pb, GetBitContext *gb) |
| static int | dv_decode_video_segment (AVCodecContext *avctx, void *arg) |
| static int | dvvideo_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
Variables | |
| static const int | dv_iweight_bits = 14 |
| static const uint16_t | dv_iweight_88 [64] |
| static const uint16_t | dv_iweight_248 [64] |
| static const uint16_t | dv_iweight_1080_y [64] |
| The "inverse" DV100 weights are actually just the spec weights (zig-zagged). More... | |
| static const uint16_t | dv_iweight_1080_c [64] |
| static const uint16_t | dv_iweight_720_y [64] |
| static const uint16_t | dv_iweight_720_c [64] |
| AVCodec | ff_dvvideo_decoder |
DV decoder
Definition in file dvdec.c.
|
static |
Definition at line 131 of file dvdec.c.
Referenced by dvvideo_decode_frame().
|
static |
|
static |
Definition at line 204 of file dvdec.c.
Referenced by dv_decode_video_segment().
|
inlinestatic |
Definition at line 264 of file dvdec.c.
Referenced by dv_decode_video_segment().
|
static |
Definition at line 276 of file dvdec.c.
Referenced by dvvideo_decode_frame().
|
static |
|
static |
Definition at line 64 of file dvdec.c.
Referenced by dv_decode_ac().
|
static |
Definition at line 66 of file dvdec.c.
Referenced by dv_init_weight_tables().
|
static |
Definition at line 76 of file dvdec.c.
Referenced by dv_init_weight_tables().
|
static |
The "inverse" DV100 weights are actually just the spec weights (zig-zagged).
Definition at line 90 of file dvdec.c.
Referenced by dv_init_weight_tables().
|
static |
Definition at line 100 of file dvdec.c.
Referenced by dv_init_weight_tables().
|
static |
Definition at line 110 of file dvdec.c.
Referenced by dv_init_weight_tables().
|
static |
Definition at line 120 of file dvdec.c.
Referenced by dv_init_weight_tables().
| AVCodec ff_dvvideo_decoder |
1.8.17