Go to the documentation of this file.
33 #define NO_SLICE_THREADING_HERE
59 uint32_t mv_vector_table[4096],
60 unsigned escape_code,
int escape_length)
62 for (
int i = 0;
i < 4096;
i++) {
66 mv_vector_table[
i] = (escape_code << 20) | (
i << 8) | escape_length;
70 int sym = mv_table[
i];
71 int len = mv_table_lens[
i];
75 mv_vector_table[(x << 6) | y] = (
code >> (24 -
len)) |
len;
78 mv_vector_table[0] = (escape_code << 20) | escape_length;
95 int run_diff= intra ? 0 : 1;
143 for (
int last = 0; last < 2; last++) {
155 int best = 0, best_size = INT_MAX;
156 int chroma_best = 0, best_chroma_size = INT_MAX;
171 const int last_size=
size + chroma_size;
172 for(last=0; last<2; last++){
186 if(last_size ==
size+chroma_size)
break;
193 if(chroma_size<best_chroma_size){
194 best_chroma_size= chroma_size;
228 if (
s->c.msmpeg4_version <= MSMP4_V2) {
237 if (
s->c.msmpeg4_version == MSMP4_WMV1)
238 s->c.inter_intra_pred =
s->c.width *
s->c.height < 320*240 &&
242 s->c.inter_intra_pred,
s->c.width,
s->c.height);
245 s->c.slice_height =
s->c.mb_height/1;
246 put_bits(&
s->pb, 5, 0x16 +
s->c.mb_height/
s->c.slice_height);
248 if (
s->c.msmpeg4_version == MSMP4_WMV1) {
254 if (
s->c.msmpeg4_version > MSMP4_V2) {
268 if (
s->c.msmpeg4_version > MSMP4_V2) {
278 s->esc3_level_length = 0;
289 if (
s->c.avctx->framerate.num > 0 &&
s->c.avctx->framerate.den > 0)
290 fps =
s->c.avctx->framerate.num /
s->c.avctx->framerate.den;
292 fps =
s->c.avctx->time_base.den /
s->c.avctx->time_base.num;
299 if (
s->c.msmpeg4_version >= MSMP4_V3)
327 code = mv_vector_table[(
mx << 6) |
my];
333 if (
s->c.mb_x == 0) {
334 if (
s->c.slice_height && (
s->c.mb_y %
s->c.slice_height) == 0) {
335 if (
s->c.msmpeg4_version < MSMP4_WMV1)
337 s->c.first_slice_line = 1;
339 s->c.first_slice_line = 0;
352 bit_size =
s->c.f_code - 1;
353 range = 1 << bit_size;
378 int motion_x,
int motion_y)
381 int cbp, coded_cbp,
i;
386 if (!
s->c.mb_intra) {
389 for (
i = 0;
i < 6;
i++) {
390 if (
s->c.block_last_index[
i] >= 0)
404 if (
s->c.msmpeg4_version <= MSMP4_V2) {
408 if((cbp&3) != 3) coded_cbp= cbp ^ 0x3C;
435 for (
i = 0;
i < 6;
i++) {
442 for (
int i = 0;
i < 6;
i++) {
443 int val = (
s->c.block_last_index[
i] >= 1);
444 cbp |=
val << (5 -
i);
446 if (
s->c.msmpeg4_version <= MSMP4_V2) {
465 coded_cbp = cbp & 0x3;
466 for (
int i = 0;
i < 4;
i++) {
467 uint8_t *coded_block;
469 int val = (
s->c.block_last_index[
i] >= 1);
472 coded_cbp |=
val << (5 -
i);
485 if (
s->c.inter_intra_pred) {
486 s->c.h263_aic_dir = 0;
493 for (
i = 0;
i < 6;
i++) {
512 *dc_val =
level *
s->c.y_dc_scale;
514 *dc_val =
level *
s->c.c_dc_scale;
520 if (
s->c.msmpeg4_version <= MSMP4_V2) {
558 int last_non_zero, sign, slevel;
559 int code, run_diff, dc_pred_dir;
561 const uint8_t *scantable;
571 run_diff =
s->c.msmpeg4_version >= MSMP4_WMV1;
572 scantable =
s->c.intra_scantable.permutated;
576 run_diff =
s->c.msmpeg4_version > MSMP4_V2;
577 scantable =
s->c.inter_scantable.permutated;
581 if (
s->c.msmpeg4_version >= MSMP4_WMV1 &&
s->c.block_last_index[n] > 0) {
582 for(last_index=63; last_index>=0; last_index--){
583 if(
block[scantable[last_index]])
break;
585 s->c.block_last_index[n] = last_index;
587 last_index =
s->c.block_last_index[n];
589 last_non_zero =
i - 1;
590 for (;
i <= last_index;
i++) {
594 run =
i - last_non_zero - 1;
595 last = (
i == last_index);
607 ms->
ac_stats[
s->c.mb_intra][n > 3][40][63][0]++;
627 if (
s->c.msmpeg4_version == MSMP4_WMV1 &&
code == rl->
n)
635 if (
s->c.msmpeg4_version >= MSMP4_WMV1) {
636 if (
s->esc3_level_length == 0) {
637 s->esc3_level_length = 8;
679 if (
s->c.msmpeg4_version <= MSMP4_WMV1) {
684 if (
s->c.msmpeg4_version >= MSMP4_WMV1) {
685 s->min_qcoeff = -255;
694 .
p.
name =
"msmpeg4v2",
#define CODEC_PIXFMTS(...)
const uint32_t ff_msmp4_dc_tables[2][2][120][2]
const AVClass ff_mpv_enc_class
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
static void align_put_bits(PutBitContext *s)
Pad the bitstream with zeros up to the next byte boundary.
const FFCodec ff_msmpeg4v3_encoder
av_cold void ff_msmpeg4_encode_init(MPVMainEncContext *const m)
void ff_msmpeg4_handle_slices(MPVEncContext *const s)
static void put_sbits(PutBitContext *pb, int n, int32_t value)
static void msmpeg4_encode_mb(MPVEncContext *const s, int16_t block[][64], int motion_x, int motion_y)
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
av_cold void ff_msmpeg4_common_init(MpegEncContext *s)
RLTable ff_rl_table[NB_RL_TABLES]
int(* encode_picture_header)(struct MPVMainEncContext *m)
int ff_mpv_encode_picture(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic_arg, int *got_packet)
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t mx
AVCodec p
The public AVCodec.
int16_t * ff_h263_pred_motion(MpegEncContext *s, int block, int dir, int *px, int *py)
const FFCodec ff_wmv1_encoder
static double val(void *priv, double ch)
#define FF_CODEC_ENCODE_CB(func)
unsigned ac_stats[2][2][MAX_LEVEL+1][MAX_RUN+1][2]
[mb_intra][isChroma][level][run][last]
const uint8_t ff_msmp4_mv_table1_lens[MSMPEG4_MV_TABLES_NB_ELEMS]
int n
number of entries of table_vlc minus 1
static int ff_thread_once(char *control, void(*routine)(void))
int8_t * max_level[2]
encoding & decoding
static void msmpeg4v2_encode_motion(MPVEncContext *const s, int val)
static int get_rl_index(const RLTable *rl, int last, int run, int level)
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static void find_best_tables(MSMPEG4EncContext *ms)
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
static MSMP4DecContext * mpv_to_msmpeg4(MpegEncContext *s)
#define CODEC_LONG_NAME(str)
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t my
const uint8_t ff_msmp4_mv_table0_lens[MSMPEG4_MV_TABLES_NB_ELEMS]
const uint16_t(* table_vlc)[2]
const uint32_t ff_table_mb_non_intra[128][2]
const uint8_t ff_v2_mb_type[8][2]
static av_cold void init_mv_table(const uint16_t mv_table[], const uint8_t mv_table_lens[], uint32_t mv_vector_table[4096], unsigned escape_code, int escape_length)
uint32_t ff_v2_dc_lum_table[512][2]
@ AV_PICTURE_TYPE_I
Intra.
static int msmpeg4_encode_picture_header(MPVMainEncContext *const m)
const uint16_t ff_msmp4_mb_i_table[64][2]
uint32_t ff_v2_dc_chroma_table[512][2]
av_cold int ff_mpv_encode_end(AVCodecContext *avctx)
const FFCodec ff_msmpeg4v2_encoder
const uint16_t ff_msmp4_mv_table0[MSMPEG4_MV_TABLES_NB_ELEMS]
The entries are of the form (8 << mvx) | mvy. Escape value is zero.
int(* init)(AVBSFContext *ctx)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
void ff_mpeg4_clean_buffers(MpegEncContext *s)
const uint8_t ff_h263_cbpy_tab[16][2]
static uint8_t rl_length[NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]
const uint16_t ff_msmp4_mv_table1[MSMPEG4_MV_TABLES_NB_ELEMS]
int ff_msmpeg4_pred_dc(MpegEncContext *s, int n, int16_t **dc_val_ptr, int *dir_ptr)
const uint8_t ff_v2_intra_cbpc[4][2]
void ff_msmpeg4_encode_motion(MSMPEG4EncContext *const ms, int mx, int my)
static int get_bits_diff(MPVEncContext *s)
#define i(width, name, range_min, range_max)
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some it can consider them to be part of the FIFO and delay acknowledging a status change accordingly Example code
static int get_size_of_code(const RLTable *rl, int last, int run, int level, int intra)
int8_t * max_run[2]
encoding & decoding
const char * name
Name of the codec implementation.
void ff_msmpeg4_encode_ext_header(MPVEncContext *const s)
int last_non_b_pict_type
used for MPEG-4 gmc B-frames & ratecontrol
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
static uint32_t mv_vector_tables[2][4096]
static const float pred[4]
const uint8_t ff_mvtab[33][2]
static av_cold void msmpeg4_encode_init_static(void)
void ff_msmpeg4_code012(PutBitContext *pb, int n)
const uint8_t ff_table_inter_intra[4][2]
@ AV_PICTURE_TYPE_P
Predicted.
av_cold int ff_mpv_encode_init(AVCodecContext *avctx)
void ff_msmpeg4_encode_block(MPVEncContext *const s, int16_t *block, int n)
static const MPVMainEncContext * slice_to_mainenc(const MPVEncContext *s)
#define MSMPEG4_MV_TABLES_NB_ELEMS
The exact code depends on how similar the blocks are and how related they are to the block
static void msmpeg4_encode_dc(MSMPEG4EncContext *const ms, int level, int n, int *dir_ptr)
MPVEncContext s
The main slicecontext.
int rl_chroma_table_index
int ff_msmpeg4_coded_block_pred(MpegEncContext *s, int n, uint8_t **coded_block_ptr)