Searched refs:picsize (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dtargaenc.c81 int bpp, picsize, datasize = -1; local
88 picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
89 if(buf_size < picsize + 45) {
132 datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dtargaenc.c80 int bpp, picsize, datasize = -1, ret, i; local
87 picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
88 if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45)) < 0)
150 datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dasfdec.c189 int ret, type, picsize, desc_len; local
191 /* type + picsize + mime + desc */
206 picsize = avio_rl32(s->pb);
224 if (picsize >= len) {
226 picsize, len);
231 desc_len = (len - picsize) * 2 + 1;
235 len -= avio_get_str16le(s->pb, len - picsize, desc, desc_len);
237 ret = av_get_packet(s->pb, &pkt, picsize);

Completed in 117 milliseconds