Home
last modified time | relevance | path

Searched refs:decode_block (Results 1 - 14 of 14) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dxfacedec.c70 static void decode_block(BigInt *b, char *bitmap, int w, int h, int level) in decode_block() function
82 decode_block(b, bitmap, w, h, level); in decode_block()
83 decode_block(b, bitmap + w, w, h, level); in decode_block()
84 decode_block(b, bitmap + h * XFACE_WIDTH, w, h, level); in decode_block()
85 decode_block(b, bitmap + w + h * XFACE_WIDTH, w, h, level); in decode_block()
144 decode_block(&b, buf, 16, 16, 0); in xface_decode_frame()
145 decode_block(&b, buf + 16, 16, 16, 0); in xface_decode_frame()
146 decode_block(&b, buf + 32, 16, 16, 0); in xface_decode_frame()
147 decode_block(&b, buf + XFACE_WIDTH * 16, 16, 16, 0); in xface_decode_frame()
148 decode_block( in xface_decode_frame()
[all...]
H A Dhqx.c115 static int decode_block(GetBitContext *gb, VLC *vlc, in decode_block() function
174 ret = decode_block(gb, &ctx->dc_vlc[vlc_index], quants, in hqx_decode_422()
220 ret = decode_block(gb, &ctx->dc_vlc[vlc_index], quants, in hqx_decode_422a()
258 ret = decode_block(gb, &ctx->dc_vlc[vlc_index], quants, in hqx_decode_444()
303 ret = decode_block(gb, &ctx->dc_vlc[vlc_index], quants, in hqx_decode_444a()
H A Dbinkaudio.c173 static int decode_block(BinkAudioContext *s, float **out, int use_dct, in decode_block() function
330 if (decode_block(s, (float **)frame->extended_data, in binkaudio_receive_frame()
H A Dinterplayacm.c526 static int decode_block(InterplayACMContext *s) in decode_block() function
594 ret = decode_block(s); in decode_frame()
H A Dimm4.c129 static int decode_block(AVCodecContext *avctx, GetBitContext *gb, in decode_block() function
193 ret = decode_block(avctx, gb, i, s->factor, flag, offset, flag2); in decode_blocks()
H A Dralf.c329 static int decode_block(AVCodecContext *avctx, GetBitContext *gb, in decode_block() function
493 if (decode_block(avctx, &gb, samples0 + ctx->sample_offset, in decode_frame()
H A Dclearvideo.c89 static inline int decode_block(CLVContext *ctx, int16_t *blk, int has_ac, in decode_block() function
187 if (decode_block(c, c->block, has_ac[i], c->ac_quant) < 0) in decode_mb()
207 if (decode_block(c, c->block, has_ac[i + 3], c->ac_quant) < 0) in decode_mb()
H A Dalsdec.c1049 static int decode_block(ALSDecContext *ctx, ALSBlockData *bd) in decode_block() function
1082 return decode_block(ctx, bd); in read_decode_block()
1765 if ((ret = decode_block(ctx, &bd)) < 0) in read_frame_data()
H A Dexr.c1181 static int decode_block(AVCodecContext *avctx, void *tdata, in decode_block() function
1352 av_log(avctx, AV_LOG_ERROR, "decode_block() failed.\n"); in decode_block()
2187 // save pointer we are going to use in decode_block in decode_frame()
2202 avctx->execute2(avctx, decode_block, s->thread_data, NULL, nb_blocks); in decode_frame()
H A Dmjpegdec.c809 static int decode_block(MJpegDecodeContext *s, int16_t *block, int component, in decode_block() function
1508 if (decode_block(s, s->block, i, in mjpeg_decode_scan()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dbase64.rs37 pub fn decode_block(src: &str) -> Result<Vec<u8>, ErrorStack> { in decode_block() functions
114 assert_eq!(b"".to_vec(), decode_block("").unwrap()); in test_decode_block()
115 assert_eq!(b"f".to_vec(), decode_block("Zg==").unwrap()); in test_decode_block()
116 assert_eq!(b"fo".to_vec(), decode_block("Zm8=").unwrap()); in test_decode_block()
117 assert_eq!(b"foo".to_vec(), decode_block("Zm9v").unwrap()); in test_decode_block()
118 assert_eq!(b"foob".to_vec(), decode_block("Zm9vYg==").unwrap()); in test_decode_block()
119 assert_eq!(b"fooba".to_vec(), decode_block("Zm9vYmE=").unwrap()); in test_decode_block()
120 assert_eq!(b"foobar".to_vec(), decode_block("Zm9vYmFy").unwrap()); in test_decode_block()
125 assert_eq!(b"foobar".to_vec(), decode_block(" Zm9vYmFy\n").unwrap()); in test_strip_whitespace()
126 assert_eq!(b"foob".to_vec(), decode_block(" Zm9vY in test_strip_whitespace()
[all...]
/third_party/libsnd/src/
H A Dgsm610.c40 int (*decode_block) (SF_PRIVATE *psf, struct gsm610_tag *pgsm610) ; member
115 pgsm610->decode_block = gsm610_wav_decode_block ; in gsm610_init()
124 pgsm610->decode_block = gsm610_decode_block ; in gsm610_init()
157 pgsm610->decode_block (psf, pgsm610) ; /* Read first block. */ in gsm610_init()
251 pgsm610->decode_block (psf, pgsm610) ; in gsm610_read_block()
399 pgsm610->decode_block (psf, pgsm610) ; in gsm610_seek()
416 pgsm610->decode_block (psf, pgsm610) ; in gsm610_seek()
H A Dima_adpcm.c31 { int (*decode_block) (SF_PRIVATE *psf, struct IMA_ADPCM_PRIVATE_tag *pima) ; member
233 pima->decode_block = wavlike_ima_decode_block ; in ima_reader_init()
240 pima->decode_block = aiff_ima_decode_block ; in ima_reader_init()
249 pima->decode_block (psf, pima) ; /* Read first block. */ in ima_reader_init()
581 pima->decode_block (psf, pima) ; in ima_read_block()
726 pima->decode_block (psf, pima) ; in aiff_ima_seek()
743 pima->decode_block (psf, pima) ; in aiff_ima_seek()
772 if (!pima->decode_block) in wavlike_ima_seek()
775 pima->decode_block (psf, pima) ; in wavlike_ima_seek()
791 pima->decode_block (ps in wavlike_ima_seek()
[all...]
/third_party/ffmpeg/libavformat/
H A Dvividas.c142 static void decode_block(uint8_t *src, uint8_t *dest, unsigned size, in decode_block() function
207 decode_block(tmp, tmp, 4, key, k2, align); in read_vblock()
223 decode_block(buf + 4, buf + 4, n, key, k2, align); in read_vblock()
244 decode_block(ibuf, sbuf, 8, *key, &k2, 0); in read_sb_block()
251 decode_block(ibuf, sbuf, 8, tmpkey, &k2, 0); in read_sb_block()
275 decode_block(buf + 8, buf + 8, n, *key, &k2, 0); in read_sb_block()

Completed in 20 milliseconds