Searched refs:decomp_buf (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dcscd.c35 unsigned char* decomp_buf; member in struct:__anon512
161 if (av_lzo1x_decode(c->decomp_buf, &outlen, &buf[2], &inlen))
168 if (uncompress(c->decomp_buf, &dlen, &buf[2], buf_size - 2) != Z_OK)
187 copy_frame_16(&c->pic, c->decomp_buf, c->linelen, c->height);
190 copy_frame_32(&c->pic, c->decomp_buf, c->linelen, c->height);
193 copy_frame_default(&c->pic, c->decomp_buf, c->linelen, c->height);
200 add_frame_16(&c->pic, c->decomp_buf, c->linelen, c->height);
203 add_frame_32(&c->pic, c->decomp_buf, c->linelen, c->height);
206 add_frame_default(&c->pic, c->decomp_buf, c->linelen, c->height);
235 c->decomp_buf
[all...]
H A Dnuv.c36 unsigned char* decomp_buf; member in struct:__anon551
119 c->decomp_buf = av_realloc(c->decomp_buf, c->decomp_size + AV_LZO_OUTPUT_PADDING);
120 if (!c->decomp_buf) {
178 if (av_lzo1x_decode(c->decomp_buf, &outlen, buf, &inlen))
180 buf = c->decomp_buf;
252 c->decomp_buf = NULL;
267 av_freep(&c->decomp_buf);
H A Dtscc.c60 unsigned char* decomp_buf; member in struct:TsccContext
97 c->zstream.next_out = c->decomp_buf;
108 ff_msrle_decode(avctx, (AVPicture*)&c->pic, c->bpp, c->decomp_buf, c->zstream.avail_out);
164 if ((c->decomp_buf = av_malloc(c->decomp_size)) == NULL) {
193 av_freep(&c->decomp_buf);
H A Dzmbv.c59 uint8_t* decomp_buf; member in struct:ZmbvContext
79 uint8_t *src = c->decomp_buf;
144 if(src - c->decomp_buf != c->decomp_len)
145 av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n", src-c->decomp_buf, c->decomp_len);
155 uint8_t *src = c->decomp_buf;
217 if(src - c->decomp_buf != c->decomp_len)
218 av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n", src-c->decomp_buf, c->decomp_len);
229 uint8_t *src = c->decomp_buf;
299 if(src - c->decomp_buf != c->decomp_len)
300 av_log(c->avctx, AV_LOG_ERROR, "Used %i of %i bytes\n", src-c->decomp_buf,
[all...]
H A Ddxa.c43 uint8_t *decomp_buf; member in struct:DxaDecContext
224 srcptr = c->decomp_buf;
234 if((compr != 4 && compr != -1) && uncompress(c->decomp_buf, &dsize, buf + 9, buf_size - 9) != Z_OK){
301 if((c->decomp_buf = av_malloc(c->dsize)) == NULL) {
313 av_freep(&c->decomp_buf);
H A Dlcldec.c67 unsigned char* decomp_buf; member in struct:LclDecContext
204 mszh_dlen = mszh_decomp(encoded + 8, mthread_inlen, c->decomp_buf, c->decomp_size);
211 c->decomp_buf + mthread_outlen, c->decomp_size - mthread_outlen);
217 encoded = c->decomp_buf;
220 mszh_dlen = mszh_decomp(encoded, len, c->decomp_buf, c->decomp_size);
226 encoded = c->decomp_buf;
257 c->zstream.next_out = c->decomp_buf;
276 c->zstream.next_out = c->decomp_buf + mthread_outlen;
291 c->zstream.next_out = c->decomp_buf;
304 encoded = c->decomp_buf;
[all...]

Completed in 157 milliseconds