FFmpeg
|
#include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "libavutil/thread.h"
#include "avcodec.h"
#include "mpegutils.h"
#include "mpegvideo.h"
#include "h263.h"
#include "h261.h"
#include "mpegvideodata.h"
Go to the source code of this file.
Macros | |
#define | UNI_ENC_INDEX(last, run, level) ((last)*128*64 + (run)*128 + (level)) |
Functions | |
int | ff_h261_get_picture_format (int width, int height) |
void | ff_h261_encode_picture_header (MpegEncContext *s, int picture_number) |
static void | h261_encode_gob_header (MpegEncContext *s, int mb_line) |
Encode a group of blocks header. More... | |
void | ff_h261_reorder_mb_index (MpegEncContext *s) |
static void | h261_encode_motion (H261Context *h, int val) |
static int | get_cbp (MpegEncContext *s, int16_t block[6][64]) |
static void | h261_encode_block (H261Context *h, int16_t *block, int n) |
Encode an 8x8 block. More... | |
void | ff_h261_encode_mb (MpegEncContext *s, int16_t block[6][64], int motion_x, int motion_y) |
static av_cold void | init_uni_h261_rl_tab (const RLTable *rl, uint8_t *len_tab) |
static av_cold void | h261_encode_init_static (void) |
av_cold void | ff_h261_encode_init (MpegEncContext *s) |
Variables | |
static uint8_t | uni_h261_rl_len [64 *64 *2 *2] |
const AVCodec | ff_h261_encoder |
H.261 encoder.
Definition in file h261enc.c.
Definition at line 41 of file h261enc.c.
Referenced by ff_h261_encode_picture_header(), ff_h261_reorder_mb_index(), ff_mpv_encode_init(), and h261_encode_gob_header().
void ff_h261_encode_picture_header | ( | MpegEncContext * | s, |
int | picture_number | ||
) |
Definition at line 54 of file h261enc.c.
Referenced by encode_picture().
|
static |
Encode a group of blocks header.
Definition at line 92 of file h261enc.c.
Referenced by ff_h261_reorder_mb_index().
void ff_h261_reorder_mb_index | ( | MpegEncContext * | s | ) |
Definition at line 109 of file h261enc.c.
Referenced by encode_thread().
|
static |
Definition at line 136 of file h261enc.c.
Referenced by ff_h261_encode_mb().
|
inlinestatic |
Definition at line 155 of file h261enc.c.
Referenced by ff_h261_encode_mb().
|
static |
Encode an 8x8 block.
block | the 8x8 block |
n | block index (0-3 are luma, 4-5 are chroma) |
Definition at line 170 of file h261enc.c.
Referenced by ff_h261_encode_mb().
void ff_h261_encode_mb | ( | MpegEncContext * | s, |
int16_t | block[6][64], | ||
int | motion_x, | ||
int | motion_y | ||
) |
Definition at line 238 of file h261enc.c.
Referenced by encode_mb_internal().
Definition at line 326 of file h261enc.c.
Referenced by h261_encode_init_static().
|
static |
Definition at line 365 of file h261enc.c.
Referenced by ff_h261_encode_init().
av_cold void ff_h261_encode_init | ( | MpegEncContext * | s | ) |
Definition at line 373 of file h261enc.c.
Referenced by ff_mpv_encode_init().
|
static |
Definition at line 38 of file h261enc.c.
Referenced by ff_h261_encode_init(), and h261_encode_init_static().
const AVCodec ff_h261_encoder |