FFmpeg
|
#include <inttypes.h>
#include "libavutil/avassert.h"
#include "libavutil/thread.h"
#include "avcodec.h"
#include "bytestream.h"
#include "bswapdsp.h"
#include "get_bits.h"
#include "golomb.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | BlockXY |
struct | MotionXY |
struct | MobiClipContext |
Macros | |
#define | MOBI_RL_VLC_BITS 12 |
#define | MOBI_MV_VLC_BITS 6 |
Variables | |
static const uint8_t | zigzag4x4_tab [] |
static const uint8_t | quant4x4_tab [][16] |
static const uint8_t | quant8x8_tab [][64] |
static const uint8_t | block4x4_coefficients_tab [] |
static const uint8_t | pframe_block4x4_coefficients_tab [] |
static const uint8_t | block8x8_coefficients_tab [] |
static const uint8_t | pframe_block8x8_coefficients_tab [] |
static const uint8_t | run_residue [2][256] |
static const uint8_t | bits0 [] |
static const uint16_t | syms0 [] |
static const uint16_t | syms1 [] |
static const uint8_t | mv_len [16] |
static const uint8_t | mv_bits [2][16][10] |
static const uint8_t | mv_syms [2][16][10] |
static VLC | rl_vlc [2] |
static VLC | mv_vlc [2][16] |
AVCodec | ff_mobiclip_decoder |
#define MOBI_RL_VLC_BITS 12 |
Definition at line 35 of file mobiclip.c.
Referenced by mobiclip_init_static(), and read_run_encoding().
#define MOBI_MV_VLC_BITS 6 |
Definition at line 36 of file mobiclip.c.
Referenced by mobiclip_decode(), mobiclip_init_static(), and predict_motion().
Definition at line 278 of file mobiclip.c.
Referenced by mobiclip_init().
|
static |
Definition at line 301 of file mobiclip.c.
|
static |
Definition at line 331 of file mobiclip.c.
Referenced by mobiclip_decode().
|
static |
Definition at line 356 of file mobiclip.c.
Referenced by idct().
Definition at line 369 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 406 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 419 of file mobiclip.c.
Referenced by add_pframe_coefficients(), and predict_intra().
|
static |
Definition at line 485 of file mobiclip.c.
Referenced by mobiclip_decode().
Definition at line 514 of file mobiclip.c.
Referenced by comp_adjust(), fir_to_phase(), init_gaussian_filter(), libopenjpeg_copy_to_packed16(), libopenjpeg_copyto16(), and predict_intra().
Definition at line 519 of file mobiclip.c.
Referenced by half_horz(), half_vert(), pick_4(), pick_5(), pick_6(), pick_7(), pick_8(), pick_above(), and pick_left().
Definition at line 540 of file mobiclip.c.
Referenced by combine_fft(), ff_avg_h264_qpel16_mc01_mmi(), ff_avg_h264_qpel16_mc03_mmi(), ff_avg_h264_qpel16_mc10_mmi(), ff_avg_h264_qpel16_mc30_mmi(), ff_avg_h264_qpel4_mc01_mmi(), ff_avg_h264_qpel4_mc03_mmi(), ff_avg_h264_qpel4_mc10_mmi(), ff_avg_h264_qpel4_mc30_mmi(), ff_avg_h264_qpel8_mc01_mmi(), ff_avg_h264_qpel8_mc03_mmi(), ff_avg_h264_qpel8_mc10_mmi(), ff_avg_h264_qpel8_mc30_mmi(), ff_put_h264_qpel16_mc01_mmi(), ff_put_h264_qpel16_mc03_mmi(), ff_put_h264_qpel16_mc10_mmi(), ff_put_h264_qpel16_mc30_mmi(), ff_put_h264_qpel4_mc01_mmi(), ff_put_h264_qpel4_mc03_mmi(), ff_put_h264_qpel4_mc10_mmi(), ff_put_h264_qpel4_mc30_mmi(), ff_put_h264_qpel8_mc01_mmi(), ff_put_h264_qpel8_mc03_mmi(), ff_put_h264_qpel8_mc10_mmi(), ff_put_h264_qpel8_mc30_mmi(), fill_ltable(), init(), pick_4(), pick_5(), pick_6(), pick_8(), premultiply16(), premultiply16offset(), premultiply16yuv(), put_mspel8_mc10_c(), put_mspel8_mc30_c(), transform(), and unpremultiply16yuv().
Definition at line 545 of file mobiclip.c.
Referenced by half_horz(), half_vert(), and pick_7().
Definition at line 550 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 557 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 564 of file mobiclip.c.
Definition at line 574 of file mobiclip.c.
Referenced by mm_decode_inter(), mm_decode_intra(), pick_4(), pick_5(), and pick_6().
Definition at line 584 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 615 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 655 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 695 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 727 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 778 of file mobiclip.c.
Referenced by predict_intra().
|
static |
Definition at line 786 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 814 of file mobiclip.c.
Referenced by encode_block(), and predict_intra().
|
static |
Definition at line 828 of file mobiclip.c.
Referenced by decode_macroblock(), and process_block().
|
static |
Definition at line 928 of file mobiclip.c.
Referenced by process_block().
|
static |
Definition at line 950 of file mobiclip.c.
Referenced by decode_macroblock().
|
static |
Definition at line 991 of file mobiclip.c.
Referenced by mobiclip_decode().
Definition at line 1071 of file mobiclip.c.
Referenced by predict_motion().
|
static |
Definition at line 1076 of file mobiclip.c.
Referenced by mobiclip_decode().
|
static |
Definition at line 1210 of file mobiclip.c.
|
static |
Definition at line 1318 of file mobiclip.c.
|
static |
Definition at line 1326 of file mobiclip.c.
|
static |
Definition at line 38 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 44 of file mobiclip.c.
Referenced by setup_qtables().
|
static |
Definition at line 54 of file mobiclip.c.
Referenced by setup_qtables().
|
static |
Definition at line 70 of file mobiclip.c.
Referenced by process_block().
|
static |
Definition at line 75 of file mobiclip.c.
Referenced by add_pframe_coefficients().
|
static |
Definition at line 80 of file mobiclip.c.
Referenced by decode_macroblock().
|
static |
Definition at line 90 of file mobiclip.c.
Referenced by mobiclip_decode().
|
static |
Definition at line 98 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 122 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 132 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 145 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 156 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 161 of file mobiclip.c.
Referenced by merge_context_after_encode(), and mobiclip_init_static().
|
static |
Definition at line 201 of file mobiclip.c.
Referenced by clv_init_static(), and mobiclip_init_static().
|
static |
Definition at line 275 of file mobiclip.c.
Referenced by ff_msmpeg4_decode_block(), ff_msmpeg4_decode_init(), and mpeg4_decode_block().
|
static |
Definition at line 276 of file mobiclip.c.
AVCodec ff_mobiclip_decoder |
Definition at line 1342 of file mobiclip.c.