FFmpeg
|
#include "libavutil/thread.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "mpeg12data.h"
#include "mpeg12vlc.h"
#include "mpegvideo.h"
#include "mpegvideodata.h"
#include "mpegvideoenc.h"
#include "rl.h"
#include "speedhq.h"
#include "speedhqenc.h"
Go to the source code of this file.
Data Structures | |
struct | SpeedHQEncContext |
Functions | |
static av_cold void | speedhq_init_static_data (void) |
static int | speedhq_encode_picture_header (MPVMainEncContext *const m) |
void | ff_speedhq_end_slice (MPVEncContext *const s) |
static void | encode_dc (PutBitContext *pb, int diff, int component) |
static void | encode_block (MPVEncContext *const s, const int16_t block[], int n) |
static void | speedhq_encode_mb (MPVEncContext *const s, int16_t block[12][64], int unused_x, int unused_y) |
static av_cold int | speedhq_encode_init (AVCodecContext *avctx) |
Variables | |
static uint8_t | speedhq_max_level [MAX_LEVEL+1] |
static uint8_t | speedhq_index_run [MAX_RUN+1] |
static const uint16_t | mpeg12_vlc_dc_lum_code_reversed [12] |
static const uint16_t | mpeg12_vlc_dc_chroma_code_reversed [12] |
static uint32_t | speedhq_lum_dc_uni [512] |
static uint32_t | speedhq_chr_dc_uni [512] |
static uint8_t | uni_speedhq_ac_vlc_len [64 *64 *2] |
const FFCodec | ff_speedhq_encoder |
SpeedHQ encoder.
Definition in file speedhqenc.c.
|
static |
Definition at line 67 of file speedhqenc.c.
Referenced by speedhq_encode_init().
|
static |
Definition at line 98 of file speedhqenc.c.
Referenced by speedhq_encode_init().
void ff_speedhq_end_slice | ( | MPVEncContext *const | s | ) |
Definition at line 113 of file speedhqenc.c.
Referenced by encode_thread(), and write_slice_end().
|
inlinestatic |
Definition at line 127 of file speedhqenc.c.
Referenced by encode_block().
|
static |
Definition at line 161 of file speedhqenc.c.
Referenced by speedhq_encode_mb().
|
static |
Definition at line 209 of file speedhqenc.c.
Referenced by speedhq_encode_init().
|
static |
Definition at line 233 of file speedhqenc.c.
|
static |
Definition at line 43 of file speedhqenc.c.
Referenced by encode_block(), and speedhq_init_static_data().
|
static |
Definition at line 44 of file speedhqenc.c.
Referenced by encode_block(), and speedhq_init_static_data().
|
static |
Definition at line 47 of file speedhqenc.c.
Referenced by encode_dc(), and speedhq_init_static_data().
|
static |
Definition at line 50 of file speedhqenc.c.
Referenced by encode_dc(), and speedhq_init_static_data().
|
static |
Definition at line 56 of file speedhqenc.c.
Referenced by encode_dc(), and speedhq_init_static_data().
|
static |
Definition at line 57 of file speedhqenc.c.
Referenced by encode_dc(), and speedhq_init_static_data().
|
static |
Definition at line 59 of file speedhqenc.c.
Referenced by speedhq_encode_init(), and speedhq_init_static_data().
const FFCodec ff_speedhq_encoder |
Definition at line 288 of file speedhqenc.c.