Lines Matching defs:dlen
960 unsigned long av_unused dlen;
1015 dlen = avio_rb32(pb);
1018 dlen = tlen;
1076 av_log(s, AV_LOG_DEBUG, "Compresssed frame %s tlen=%d dlen=%ld\n", tag, tlen, dlen);
1080 if (dlen / 32768 > tlen)
1083 av_fast_malloc(&uncompressed_buffer, &uncompressed_buffer_size, dlen);
1085 av_log(s, AV_LOG_ERROR, "Failed to alloc %ld bytes\n", dlen);
1098 err = uncompress(uncompressed_buffer, &dlen, buffer, tlen);
1103 ffio_init_context(&pb_local, uncompressed_buffer, dlen, 0, NULL, NULL, NULL, NULL);
1104 tlen = dlen;