FFmpeg
|
LZW decoding routines. More...
Go to the source code of this file.
Data Structures | |
struct | LZWState |
Macros | |
#define | LZW_MAXBITS 12 |
#define | LZW_SIZTABLE (1<<LZW_MAXBITS) |
Functions | |
static int | lzw_get_code (struct LZWState *s) |
void | ff_lzw_decode_tail (LZWState *p) |
av_cold void | ff_lzw_decode_open (LZWState **p) |
av_cold void | ff_lzw_decode_close (LZWState **p) |
int | ff_lzw_decode_init (LZWState *p, int csize, const uint8_t *buf, int buf_size, int mode) |
Initialize LZW decoder. More... | |
int | ff_lzw_decode (LZWState *p, uint8_t *buf, int len) |
Decode given number of bytes NOTE: the algorithm here is inspired from the LZW GIF decoder written by Steven A. More... | |
Variables | |
static const uint16_t | mask [17] |
Detailed Description
LZW decoding routines.
Definition in file lzw.c.
Macro Definition Documentation
#define LZW_MAXBITS 12 |
Definition at line 34 of file lzw.c.
Referenced by ff_lzw_decode(), and ff_lzw_decode_init().
#define LZW_SIZTABLE (1<<LZW_MAXBITS) |
Function Documentation
Decode given number of bytes NOTE: the algorithm here is inspired from the LZW GIF decoder written by Steven A.
Bennett in 1987.
- Parameters
-
p LZW context buf output buffer len number of bytes to decode
- Returns
- number of bytes decoded
Definition at line 170 of file lzw.c.
Referenced by gif_read_image(), and tiff_unpack_strip().
Definition at line 118 of file lzw.c.
Referenced by gif_decode_close(), and tiff_end().
Initialize LZW decoder.
- Parameters
-
p LZW context csize initial code size in bits buf input data buf_size input data size mode decoder working mode - either GIF or TIFF
Definition at line 131 of file lzw.c.
Referenced by gif_read_image(), and tiff_unpack_strip().
Definition at line 113 of file lzw.c.
Referenced by gif_decode_init(), and tiff_init().
Definition at line 95 of file lzw.c.
Referenced by gif_read_image().
|
static |
Definition at line 69 of file lzw.c.
Referenced by ff_lzw_decode().
Variable Documentation
|
static |
Definition at line 37 of file lzw.c.
Referenced by ac3_lshift_int16_c(), av_read_image_line(), av_set_cpu_flags_mask(), binkb_read_bundle(), build_xlaw_table(), cinepak_decode_codebook(), cinepak_decode_vectors(), cmp_direct_inline(), dca_decode_frame(), dca_parse_audio_coding_header(), dca_xxch2index(), decode_0(), decode_13(), decode_bmv_frame(), decode_clnpass(), decode_dds1(), decode_dsw1(), decode_init(), decode_mvc1(), decode_mvc2(), decode_residual(), decode_residual_block(), decode_sigpass(), decode_tsw1(), decodeplane32(), diff_pixels_mvi(), drawtext(), encode_clnpass(), encode_codeword(), encode_refpass(), encode_sigpass(), escape124_decode_frame(), ff_acelp_fc_pulse_per_track(), ff_blend_mask(), ff_decode_10_pulses_35bits(), ff_draw_pc_font(), ff_er_add_slice(), ff_h264_check_intra4x4_pred_mode(), ff_lsb2full(), ff_lzw_decode(), ff_lzw_decode_init(), ff_vector_fmul_add_altivec(), filter_channel(), get_cabac_bypass_sign(), get_len(), get_mb_score(), h264_deblock_mask(), init(), init_cavlc_level_tab(), init_luts(), ljpeg_decode_rgb_scan(), mp3_write_xing(), mpc8_decode_frame(), mpc8_get_mask(), mszh_decomp(), picmemset(), png_get_interlaced_row(), png_put_interlaced_row(), pp_get_mode_by_name_and_quality(), pred_mv(), pred_spatial_direct_motion(), put_swf_line_edge(), put_swf_rect(), read_residue(), rematrix_channels(), request_frame(), rv34_decode_cbp(), rv34_pred_mv_b(), subsampling_bounds(), ulti_pattern(), unaligned_load(), vertClassify_altivec(), vp56_mc(), vp6_filter(), write_element(), x8_get_ac_rlf(), and xan_unpack_luma().
Generated on Mon Nov 18 2024 06:52:07 for FFmpeg by 1.8.11