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 36 of file mobiclip.c.
#define MOBI_MV_VLC_BITS 6 |
Definition at line 37 of file mobiclip.c.
|
static |
Definition at line 279 of file mobiclip.c.
Referenced by mobiclip_init().
|
static |
Definition at line 302 of file mobiclip.c.
|
static |
Definition at line 332 of file mobiclip.c.
Referenced by mobiclip_decode().
|
static |
Definition at line 357 of file mobiclip.c.
Referenced by idct().
Definition at line 370 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 407 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 420 of file mobiclip.c.
Referenced by add_pframe_coefficients(), and predict_intra().
|
static |
Definition at line 486 of file mobiclip.c.
Referenced by mobiclip_decode().
Definition at line 515 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 520 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 541 of file mobiclip.c.
Referenced by clear_slice16(), clear_slice8(), combine_fft(), deinterlace_slice(), 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(), init_axis_color(), maskedmerge16(), pick_4(), pick_5(), pick_6(), pick_8(), premultiply16(), premultiply16offset(), premultiply16yuv(), put_mspel8_mc10_c(), put_mspel8_mc30_c(), subtract_mean_new(), subtract_mean_old(), transform(), and unpremultiply16yuv().
Definition at line 546 of file mobiclip.c.
Referenced by half_horz(), half_vert(), and pick_7().
Definition at line 551 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 558 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 565 of file mobiclip.c.
Definition at line 575 of file mobiclip.c.
Referenced by mm_decode_inter(), mm_decode_intra(), pick_4(), pick_5(), and pick_6().
Definition at line 585 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 616 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 656 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 696 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 728 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 779 of file mobiclip.c.
Referenced by predict_intra().
|
static |
Definition at line 787 of file mobiclip.c.
Referenced by predict_intra().
Definition at line 815 of file mobiclip.c.
Referenced by encode_block(), and predict_intra().
|
static |
Definition at line 829 of file mobiclip.c.
Referenced by decode_macroblock(), and process_block().
|
static |
Definition at line 929 of file mobiclip.c.
Referenced by process_block().
|
static |
Definition at line 951 of file mobiclip.c.
Referenced by decode_macroblock().
|
static |
Definition at line 992 of file mobiclip.c.
Referenced by mobiclip_decode().
Definition at line 1072 of file mobiclip.c.
Referenced by predict_motion().
|
static |
Definition at line 1077 of file mobiclip.c.
Referenced by mobiclip_decode().
|
static |
Definition at line 1211 of file mobiclip.c.
|
static |
Definition at line 1319 of file mobiclip.c.
|
static |
Definition at line 1327 of file mobiclip.c.
|
static |
Definition at line 39 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 45 of file mobiclip.c.
Referenced by setup_qtables().
|
static |
Definition at line 55 of file mobiclip.c.
Referenced by setup_qtables().
|
static |
Definition at line 71 of file mobiclip.c.
Referenced by process_block().
|
static |
Definition at line 76 of file mobiclip.c.
Referenced by add_pframe_coefficients().
|
static |
Definition at line 81 of file mobiclip.c.
Referenced by decode_macroblock().
|
static |
Definition at line 91 of file mobiclip.c.
Referenced by mobiclip_decode().
|
static |
Definition at line 99 of file mobiclip.c.
Referenced by add_coefficients().
|
static |
Definition at line 123 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 133 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 146 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 157 of file mobiclip.c.
Referenced by mobiclip_init_static().
|
static |
Definition at line 162 of file mobiclip.c.
Referenced by merge_context_after_encode(), and mobiclip_init_static().
|
static |
Definition at line 202 of file mobiclip.c.
Referenced by clv_init_static(), and mobiclip_init_static().
|
static |
Definition at line 276 of file mobiclip.c.
Referenced by ff_msmpeg4_decode_block(), ff_msmpeg4_decode_init(), mobiclip_init_static(), mpeg4_decode_block(), and read_run_encoding().
|
static |
Definition at line 277 of file mobiclip.c.
Referenced by mobiclip_decode(), mobiclip_init_static(), and predict_motion().
AVCodec ff_mobiclip_decoder |
Definition at line 1343 of file mobiclip.c.