h263 decoder. More...
#include <limits.h>#include "libavutil/mathematics.h"#include "dsputil.h"#include "avcodec.h"#include "mpegvideo.h"#include "h263.h"#include "mathops.h"#include "unary.h"#include "flv.h"#include "mpeg4video.h"Go to the source code of this file.
Macros | |
| #define | MV_VLC_BITS 9 |
| #define | H263_MBTYPE_B_VLC_BITS 6 |
| #define | CBPC_B_VLC_BITS 3 |
Variables | |
| static const int | h263_mb_type_b_map [15] |
| VLC | ff_h263_intra_MCBPC_vlc |
| VLC | ff_h263_inter_MCBPC_vlc |
| VLC | ff_h263_cbpy_vlc |
| static VLC | mv_vlc |
| static VLC | h263_mbtype_b_vlc |
| static VLC | cbpc_b_vlc |
h263 decoder.
Definition in file ituh263dec.c.
| #define CBPC_B_VLC_BITS 3 |
Definition at line 52 of file ituh263dec.c.
Referenced by ff_h263_decode_init_vlc(), and ff_h263_decode_mb().
| #define H263_MBTYPE_B_VLC_BITS 6 |
Definition at line 51 of file ituh263dec.c.
Referenced by ff_h263_decode_init_vlc(), and ff_h263_decode_mb().
| #define MV_VLC_BITS 9 |
Definition at line 50 of file ituh263dec.c.
Referenced by ff_h263_decode_init_vlc(), and ff_h263_decode_motion().
| void ff_h263_decode_init_vlc | ( | MpegEncContext * | s | ) |
Definition at line 104 of file ituh263dec.c.
Referenced by ff_h263_decode_init(), and rv10_decode_init().
| int ff_h263_decode_mb | ( | MpegEncContext * | s, |
| DCTELEM | block[6][64] | ||
| ) |
Definition at line 601 of file ituh263dec.c.
Referenced by ff_h263_decode_init(), and rv10_decode_packet().
| int ff_h263_decode_mba | ( | MpegEncContext * | s | ) |
Definition at line 136 of file ituh263dec.c.
Referenced by ff_h263_decode_picture_header(), h263_decode_gob_header(), and rv20_decode_picture_header().
| int ff_h263_decode_motion | ( | MpegEncContext * | s, |
| int | pred, | ||
| int | f_code | ||
| ) |
Definition at line 272 of file ituh263dec.c.
Referenced by ff_h263_decode_mb(), mpeg4_decode_mb(), mpeg4_decode_partition_a(), and preview_obmc().
| int ff_h263_decode_picture_header | ( | MpegEncContext * | s | ) |
Definition at line 869 of file ituh263dec.c.
Referenced by ff_h263_decode_frame().
| const uint8_t* ff_h263_find_resync_marker | ( | const uint8_t *restrict | p, |
| const uint8_t *restrict | end | ||
| ) |
Find the next resync_marker.
| p | pointer to buffer to scan |
| end | pointer to the end of the buffer |
Definition at line 211 of file ituh263dec.c.
| int ff_h263_resync | ( | MpegEncContext * | s | ) |
Decode the group of blocks / video packet header.
Definition at line 230 of file ituh263dec.c.
Referenced by ff_h263_decode_frame().
| void ff_h263_show_pict_info | ( | MpegEncContext * | s | ) |
Print picture info if FF_DEBUG_PICT_INFO is set.
Definition at line 72 of file ituh263dec.c.
Referenced by ff_h263_decode_picture_header(), and ff_intel_h263_decode_picture_header().
|
static |
Definition at line 441 of file ituh263dec.c.
Referenced by ff_h263_decode_mb(), and h263_skip_b_part().
|
static |
Definition at line 428 of file ituh263dec.c.
Referenced by ff_h263_decode_mb().
|
static |
Decode the group of blocks header or slice header.
Definition at line 154 of file ituh263dec.c.
Referenced by ff_h263_resync().
|
static |
Definition at line 583 of file ituh263dec.c.
Referenced by ff_h263_decode_mb().
|
static |
Definition at line 564 of file ituh263dec.c.
Referenced by ff_h263_decode_mb().
|
static |
Definition at line 310 of file ituh263dec.c.
Referenced by ff_h263_decode_mb(), and preview_obmc().
|
static |
read the next MVs for OBMC.
yes this is a ugly hack, feel free to send a patch :)
Definition at line 336 of file ituh263dec.c.
Referenced by ff_h263_decode_mb().
|
static |
Definition at line 99 of file ituh263dec.c.
| VLC ff_h263_cbpy_vlc |
Definition at line 96 of file ituh263dec.c.
Referenced by mpeg4_decode_mb(), mpeg4_decode_partition_b(), and msmpeg4v12_decode_mb().
| VLC ff_h263_inter_MCBPC_vlc |
Definition at line 95 of file ituh263dec.c.
Referenced by mpeg4_decode_mb(), mpeg4_decode_partition_a(), and msmpeg4v12_decode_mb().
| VLC ff_h263_intra_MCBPC_vlc |
Definition at line 94 of file ituh263dec.c.
Referenced by mpeg4_decode_mb(), mpeg4_decode_partition_a(), and msmpeg4v12_decode_mb().
|
static |
Definition at line 54 of file ituh263dec.c.
Referenced by ff_h263_decode_mb().
|
static |
Definition at line 98 of file ituh263dec.c.
|
static |
Definition at line 97 of file ituh263dec.c.