/third_party/ffmpeg/libavcodec/ |
D | tiff_common.h | 71 unsigned ff_tget_short(GetByteContext *gb, int le); 74 unsigned ff_tget_long(GetByteContext *gb, int le); 77 double ff_tget_double(GetByteContext *gb, int le); 80 unsigned ff_tget(GetByteContext *gb, int type, int le); 86 GetByteContext *gb, int le, AVDictionary **metadata); 92 GetByteContext *gb, int le, AVDictionary **metadata); 98 GetByteContext *gb, int le, AVDictionary **metadata); 104 GetByteContext *gb, int le, int is_signed, AVDictionary **metadata); 110 GetByteContext *gb, int le, int is_signed, AVDictionary **metadata); 116 GetByteContext *gb, int le, AVDictionary **metadata); [all …]
|
D | bytestream.h | 33 typedef struct GetByteContext { struct 35 } GetByteContext; argument 68 static av_always_inline type bytestream2_get_ ## name ## u(GetByteContext *g) \ 72 static av_always_inline type bytestream2_get_ ## name(GetByteContext *g) \ 80 static av_always_inline type bytestream2_peek_ ## name ## u(GetByteContext *g) \ 84 static av_always_inline type bytestream2_peek_ ## name(GetByteContext *g) \ 137 static av_always_inline void bytestream2_init(GetByteContext *g, in bytestream2_init() 158 static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g) in bytestream2_get_bytes_left() 168 static av_always_inline void bytestream2_skip(GetByteContext *g, in bytestream2_skip() 174 static av_always_inline void bytestream2_skipu(GetByteContext *g, in bytestream2_skipu() [all …]
|
D | tiff_common.c | 43 unsigned ff_tget_short(GetByteContext *gb, int le) in ff_tget_short() 49 unsigned ff_tget_long(GetByteContext *gb, int le) in ff_tget_long() 55 double ff_tget_double(GetByteContext *gb, int le) in ff_tget_double() 62 unsigned ff_tget(GetByteContext *gb, int type, int le) in ff_tget() 83 GetByteContext *gb, int le, AVDictionary **metadata) in ff_tadd_rational_metadata() 117 GetByteContext *gb, int le, AVDictionary **metadata) in ff_tadd_long_metadata() 148 GetByteContext *gb, int le, AVDictionary **metadata) in ff_tadd_doubles_metadata() 179 GetByteContext *gb, int le, int is_signed, AVDictionary **metadata) in ff_tadd_shorts_metadata() 211 GetByteContext *gb, int le, int is_signed, AVDictionary **metadata) in ff_tadd_bytes_metadata() 242 GetByteContext *gb, int le, AVDictionary **metadata) in ff_tadd_string_metadata() [all …]
|
D | snappy.c | 34 static int64_t bytestream2_get_levarint(GetByteContext *gb) in bytestream2_get_levarint() 51 static int snappy_literal(GetByteContext *gb, uint8_t *p, int size, int val) in snappy_literal() 96 static int snappy_copy1(GetByteContext *gb, uint8_t *start, uint8_t *p, in snappy_copy1() 105 static int snappy_copy2(GetByteContext *gb, uint8_t *start, uint8_t *p, in snappy_copy2() 114 static int snappy_copy4(GetByteContext *gb, uint8_t *start, uint8_t *p, in snappy_copy4() 123 static int64_t decode_len(GetByteContext *gb) in decode_len() 133 int64_t ff_snappy_peek_uncompressed_length(GetByteContext *gb) in ff_snappy_peek_uncompressed_length() 143 int ff_snappy_uncompress(GetByteContext *gb, uint8_t *buf, int64_t *size) in ff_snappy_uncompress()
|
D | dfa.c | 56 static int decode_copy(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_copy() 65 static int decode_tsw1(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_tsw1() 108 static int decode_dsw1(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_dsw1() 145 static int decode_dds1(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_dds1() 196 static int decode_bdlt(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_bdlt() 238 static int decode_wdlt(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_wdlt() 299 static int decode_tdlt(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_tdlt() 321 static int decode_blck(GetByteContext *gb, uint8_t *frame, int width, int height) in decode_blck() 328 typedef int (*chunk_decoder)(GetByteContext *gb, uint8_t *frame, int width, int height); 345 GetByteContext gb; in dfa_decode_frame()
|
D | gdv.c | 31 GetByteContext gb; 32 GetByteContext g2; 178 static int read_bits2(Bits8 *bits, GetByteContext *gb) in read_bits2() 193 static void fill_bits32(Bits32 *bits, GetByteContext *gb) in fill_bits32() 199 static int read_bits32(Bits32 *bits, GetByteContext *gb, int nbits) in read_bits32() 213 static void lz_copy(PutByteContext *pb, GetByteContext *g2, int offset, unsigned len) in lz_copy() 245 GetByteContext *gb = &gdv->gb; in decompress_2() 246 GetByteContext *g2 = &gdv->g2; in decompress_2() 287 GetByteContext *gb = &gdv->gb; in decompress_5() 288 GetByteContext *g2 = &gdv->g2; in decompress_5() [all …]
|
D | exif.c | 46 GetByteContext *gb, int le, in exif_add_metadata() 73 static int exif_decode_tag(void *logctx, GetByteContext *gbytes, int le, in exif_decode_tag() 115 int ff_exif_decode_ifd(void *logctx, GetByteContext *gbytes, in ff_exif_decode_ifd() 140 GetByteContext gb; in avpriv_exif_decode_ifd()
|
D | pgxdec.c | 27 static int pgx_get_number(AVCodecContext *avctx, GetByteContext *g, int *number) { in pgx_get_number() 52 static int pgx_decode_header(AVCodecContext *avctx, GetByteContext *g, in pgx_decode_header() 98 static inline void write_frame_ ##D(AVFrame *frame, GetByteContext *g, \ 127 GetByteContext g; in pgx_decode_frame()
|
D | snappy.h | 47 int64_t ff_snappy_peek_uncompressed_length(GetByteContext *gb); 58 int ff_snappy_uncompress(GetByteContext *gb, uint8_t *buf, int64_t *size);
|
D | mwsc.c | 40 static int rle_uncompress(GetByteContext *gb, PutByteContext *pb, GetByteContext *gbp, in rle_uncompress() 96 GetByteContext gb; in decode_frame() 97 GetByteContext gbp; in decode_frame()
|
D | sga.c | 33 GetByteContext gb; 67 static int decode_palette(GetByteContext *gb, uint32_t *pal) in decode_palette() 130 GetByteContext *gb = &s->gb; in decode_index_tilemap() 202 GetByteContext *gb, uint8_t *dst, in lzss_decompress() 255 GetByteContext *gb = &s->gb; in decode_palmapdata() 278 GetByteContext *gb = &s->gb; in decode_tiledata() 313 GetByteContext *gb = &s->gb; in sga_decode_frame() 411 GetByteContext gb2; in sga_decode_frame()
|
D | midivid.c | 38 GetByteContext gb; 49 GetByteContext *gb = &s->gb; in decode_mvdv() 51 GetByteContext idx9; in decode_mvdv() 154 static ptrdiff_t lzss_uncompress(MidiVidContext *s, GetByteContext *gb, uint8_t *dst, unsigned int … in lzss_uncompress() 194 GetByteContext *gb = &s->gb; in decode_frame()
|
D | argo.c | 36 GetByteContext gb; 49 GetByteContext *gb = &s->gb; in decode_pal8() 70 GetByteContext *gb = &s->gb; in decode_avcf() 99 GetByteContext *gb = &s->gb; in decode_alcd() 100 GetByteContext sb; in decode_alcd() 147 GetByteContext *gb = &s->gb; in decode_mad1() 357 GetByteContext *gb = &s->gb; in decode_mad1_24() 565 GetByteContext *gb = &s->gb; in decode_rle() 606 GetByteContext *gb = &s->gb; in decode_frame()
|
D | hap.h | 65 GetByteContext gbc; 109 int ff_hap_parse_section_header(GetByteContext *gbc, int *section_size,
|
D | qdrw.c | 47 static int parse_palette(AVCodecContext *avctx, GetByteContext *gbc, in parse_palette() 74 static int decode_rle_bpp2(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc) in decode_rle_bpp2() 129 static int decode_rle_bpp4(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc) in decode_rle_bpp4() 173 static int decode_rle16(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc) in decode_rle16() 216 static int decode_rle(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc, in decode_rle() 295 GetByteContext gbc; in decode_frame()
|
D | anm.c | 39 GetByteContext gb; in decode_init() 76 GetByteContext *gb, in op() 117 GetByteContext gb; in decode_frame()
|
D | rasc.c | 51 GetByteContext gb; 118 GetByteContext *gb = &s->gb; in decode_fint() 178 GetByteContext *gb = &s->gb; in decode_zlib() 211 GetByteContext *gb = &s->gb; in decode_move() 212 GetByteContext mc; in decode_move() 335 GetByteContext *gb = &s->gb; in decode_dlta() 336 GetByteContext dc; in decode_dlta() 477 GetByteContext *gb = &s->gb; in decode_kfrm() 540 GetByteContext *gb = &s->gb; in decode_mous() 580 GetByteContext *gb = &s->gb; in decode_mpos() [all …]
|
D | fmvc.c | 41 GetByteContext gb; 54 static int decode_type2(GetByteContext *gb, PutByteContext *pb) in decode_type2() 60 GetByteContext gbc; in decode_type2() 289 static int decode_type1(GetByteContext *gb, PutByteContext *pb) in decode_type1() 296 GetByteContext gbc; in decode_type1() 335 GetByteContext gbc; in decode_type1() 400 GetByteContext *gb = &s->gb; in decode_frame()
|
D | msrledec.c | 34 GetByteContext *gb) in msrle_decode_pal4() 130 int depth, GetByteContext *gb) in msrle_decode_8_16_24_32() 250 int depth, GetByteContext *gb) in ff_msrle_decode()
|
D | scpr.c | 38 static void init_rangecoder(RangeCoder *rc, GetByteContext *gb) in init_rangecoder() 102 static int decode(GetByteContext *gb, RangeCoder *rc, uint32_t cumFreq, uint32_t freq, uint32_t tot… in decode() 131 static int decode0(GetByteContext *gb, RangeCoder *rc, uint32_t cumFreq, uint32_t freq, uint32_t to… in decode0() 165 GetByteContext *gb = &s->gb; in decode_value() 209 GetByteContext *gb = &s->gb; in decode_unit() 300 GetByteContext *gb = &s->gb; in decompress_i() 374 GetByteContext *gb = &s->gb; in decompress_p() 498 GetByteContext *gb = &s->gb; in decode_frame()
|
D | pcx.c | 33 static int pcx_rle_decode(GetByteContext *gb, in pcx_rle_decode() 61 static void pcx_palette(GetByteContext *gb, uint32_t *dst, int pallen) in pcx_palette() 75 GetByteContext gb; in pcx_decode_frame()
|
D | arbc.c | 36 GetByteContext gb; 44 GetByteContext *gb = &s->gb; in fill_tile4() 80 GetByteContext *gb = &s->gb; in fill_tileX()
|
D | dxv.c | 37 GetByteContext gbc; 291 GetByteContext *gbc = &ctx->gbc; in dxv_decompress_dxt1() 343 static int fill_ltable(GetByteContext *gb, uint32_t *table, int *nb_elements) in fill_ltable() 428 static int get_opcodes(GetByteContext *gb, uint32_t *table, uint8_t *dst, int op_size, int nb_eleme… in get_opcodes() 470 static int dxv_decompress_opcodes(GetByteContext *gb, void *dstp, size_t op_size) in dxv_decompress_opcodes() 495 static int dxv_decompress_cgo(DXVContext *ctx, GetByteContext *gb, in dxv_decompress_cgo() 735 static int dxv_decompress_cocg(DXVContext *ctx, GetByteContext *gb, in dxv_decompress_cocg() 791 static int dxv_decompress_yo(DXVContext *ctx, GetByteContext *gb, in dxv_decompress_yo() 836 GetByteContext *gb = &ctx->gbc; in dxv_decompress_ycg6() 852 GetByteContext *gb = &ctx->gbc; in dxv_decompress_yg10() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | rtmppkt.h | 269 int ff_amf_read_number(GetByteContext *gbc, double *val); 285 int ff_amf_get_string(GetByteContext *bc, uint8_t *str, 300 int ff_amf_read_string(GetByteContext *gbc, uint8_t *str, 309 int ff_amf_read_null(GetByteContext *gbc);
|
D | rtmppkt.c | 87 int ff_amf_read_number(GetByteContext *bc, double *val) in ff_amf_read_number() 97 int ff_amf_get_string(GetByteContext *bc, uint8_t *str, in ff_amf_get_string() 115 int ff_amf_read_string(GetByteContext *bc, uint8_t *str, in ff_amf_read_string() 123 int ff_amf_read_null(GetByteContext *bc) in ff_amf_read_null() 428 static int amf_tag_skip(GetByteContext *gb) in amf_tag_skip() 485 GetByteContext gb; in ff_amf_tag_size() 500 static int amf_get_field_value2(GetByteContext *gb, in amf_get_field_value2() 554 GetByteContext gb; in ff_amf_get_field_value()
|