FFmpeg
|
#include "config.h"
#include "libavutil/thread.h"
#include "avcodec.h"
#include "idctdsp.h"
#include "mpegvideo.h"
#include "msmpeg4.h"
#include "mpeg4videodata.h"
#include "msmpeg4data.h"
#include "msmpeg4_vc1_data.h"
Go to the source code of this file.
Functions | |
static av_cold void | init_h263_dc_for_msmpeg4 (void) |
static av_cold void | msmpeg4_common_init_static (void) |
av_cold void | ff_msmpeg4_common_init (MpegEncContext *s) |
int | ff_msmpeg4_coded_block_pred (MpegEncContext *s, int n, uint8_t **coded_block_ptr) |
static int | get_dc (uint8_t *src, int stride, int scale, int block_size) |
int | ff_msmpeg4_pred_dc (MpegEncContext *s, int n, int16_t **dc_val_ptr, int *dir_ptr) |
MSMPEG4 backend for encoder and decoder
Definition in file msmpeg4.c.
|
static |
Definition at line 55 of file msmpeg4.c.
Referenced by msmpeg4_common_init_static().
|
static |
Definition at line 107 of file msmpeg4.c.
Referenced by ff_msmpeg4_common_init().
av_cold void ff_msmpeg4_common_init | ( | MpegEncContext * | s | ) |
Definition at line 117 of file msmpeg4.c.
Referenced by ff_msmpeg4_decode_init(), and ff_msmpeg4_encode_init().
int ff_msmpeg4_coded_block_pred | ( | MpegEncContext * | s, |
int | n, | ||
uint8_t ** | coded_block_ptr | ||
) |
Definition at line 156 of file msmpeg4.c.
Referenced by ff_msmpeg4_encode_mb(), ff_wmv2_encode_mb(), msmpeg4v34_decode_mb(), and wmv2_decode_mb().
|
static |
Definition at line 182 of file msmpeg4.c.
Referenced by ff_msmpeg4_pred_dc().
int ff_msmpeg4_pred_dc | ( | MpegEncContext * | s, |
int | n, | ||
int16_t ** | dc_val_ptr, | ||
int * | dir_ptr | ||
) |
Definition at line 196 of file msmpeg4.c.
Referenced by msmpeg4_decode_dc(), and msmpeg4_encode_dc().