Home
last modified time | relevance | path

Searched refs:out_bytes (Results 1 – 14 of 14) sorted by relevance

/third_party/ffmpeg/libavformat/
Dspdifenc.c67 int out_bytes; ///< amount of outgoing bytes member
146 ctx->out_bytes = ctx->hd_buf_filled; in spdif_header_eac3()
232 ctx->out_bytes = sizeof(dtshd_start_code) + 2 + pkt_size; in spdif_header_dts4()
236 ctx->length_code = FFALIGN(ctx->out_bytes + 0x8, 0x10) - 0x8; in spdif_header_dts4()
238 av_fast_malloc(&ctx->hd_buf[0], &ctx->hd_buf_size, ctx->out_bytes); in spdif_header_dts4()
309 ctx->out_bytes = core_size; in spdif_header_dts()
315 if (ctx->out_bytes == ctx->pkt_offset) { in spdif_header_dts()
320 } else if (ctx->out_bytes > ctx->pkt_offset - BURST_HEADER_SIZE) { in spdif_header_dts()
563 ctx->out_bytes = MAT_FRAME_SIZE; in spdif_header_truehd()
630 ctx->out_bytes = pkt->size; in spdif_write_packet()
[all …]
/third_party/lame/dshow/
DEncoder.cpp209 int out_bytes = 0; in Init() local
212out_bytes = lame_encode_buffer_interleaved(pgf, start_padd, 48, m_outFrameBuf, OUT_BUFFER_SIZE); in Init()
214out_bytes = lame_encode_buffer(pgf, start_padd, start_padd, 48, m_outFrameBuf, OUT_BUFFER_SIZE); in Init()
216 if (out_bytes > 0) in Init()
217 m_outOffset += out_bytes; in Init()
293 int out_bytes = 0; in Encode() local
296 out_bytes = lame_encode_buffer_interleaved( in Encode()
303 out_bytes = lame_encode_buffer( in Encode()
311 if (out_bytes < 0) in Encode()
314 m_outOffset += out_bytes; in Encode()
/third_party/lwip/src/apps/snmp/
Dsnmpv3_mbedtls.c124 u8_t out_bytes[8]; in snmpv3_crypt() local
154 out_len = LWIP_ARRAYSIZE(out_bytes) ; in snmpv3_crypt()
162 … if (mbedtls_cipher_update(&ctx, in_bytes, LWIP_ARRAYSIZE(in_bytes), out_bytes, &out_len) != 0) { in snmpv3_crypt()
166 if (snmp_pbuf_stream_writebuf(&write_stream, out_bytes, (u16_t)out_len) != ERR_OK) { in snmpv3_crypt()
171 out_len = LWIP_ARRAYSIZE(out_bytes); in snmpv3_crypt()
172 if (mbedtls_cipher_finish(&ctx, out_bytes, &out_len) != 0) { in snmpv3_crypt()
176 if (snmp_pbuf_stream_writebuf(&write_stream, out_bytes, (u16_t)out_len) != ERR_OK) { in snmpv3_crypt()
/third_party/ffmpeg/libavcodec/
Dttaenc.c92 int ret, i, out_bytes, cur_chan, res, samples; in tta_encode_frame() local
187 out_bytes = put_bytes_output(&pb); in tta_encode_frame()
188 put_bits32(&pb, av_crc(s->crc_table, UINT32_MAX, avpkt->data, out_bytes) ^ UINT32_MAX); in tta_encode_frame()
192 avpkt->size = out_bytes + 4; in tta_encode_frame()
Dalacenc.c584 int out_bytes, max_frame_size, ret; in alac_encode_frame() local
606 out_bytes = write_frame(s, avpkt, frame->extended_data); in alac_encode_frame()
608 if (out_bytes > max_frame_size) { in alac_encode_frame()
612 out_bytes = write_frame(s, avpkt, frame->extended_data); in alac_encode_frame()
615 avpkt->size = out_bytes; in alac_encode_frame()
Dflacenc.c1330 int frame_bytes, out_bytes, ret; in flac_encode_frame() local
1387 out_bytes = write_frame(s, avpkt); in flac_encode_frame()
1395 if (out_bytes > s->max_encoded_framesize) in flac_encode_frame()
1396 s->max_encoded_framesize = out_bytes; in flac_encode_frame()
1397 if (out_bytes < s->min_framesize) in flac_encode_frame()
1398 s->min_framesize = out_bytes; in flac_encode_frame()
1405 av_shrink_packet(avpkt, out_bytes); in flac_encode_frame()
/third_party/lwip/src/apps/http/makefsdata/
Dmakefsdata.c567 size_t out_bytes = OUT_BUF_SIZE; in get_file_data() local
581 … status = tdefl_compress(&g_deflator, next_in, &in_bytes, next_out, &out_bytes, TDEFL_FINISH); in get_file_data()
586 LWIP_ASSERT("out_bytes <= COPY_BUFSIZE", out_bytes <= OUT_BUF_SIZE); in get_file_data()
587 if (out_bytes < fsize) { in get_file_data()
588 ret_buf = (u8_t *)malloc(out_bytes); in get_file_data()
590 memcpy(ret_buf, s_outbuf, out_bytes); in get_file_data()
595 size_t dec_in_bytes = out_bytes; in get_file_data()
609 *file_size = out_bytes; in get_file_data()
610 …te: %d bytes -> %d bytes (%.02f%%)" NEWLINE, (int)fsize, (int)out_bytes, (float)((out_bytes * 100.… in get_file_data()
611 deflatedBytesReduced += (size_t)(fsize - out_bytes); in get_file_data()
[all …]
/third_party/node/deps/brotli/c/enc/
Dencode.c1694 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local
1695 BROTLI_DCHECK(out_bytes <= *available_out); in BrotliEncoderCompressStreamFast()
1696 BROTLI_DCHECK((storage_ix & 7) == 0 || out_bytes < *available_out); in BrotliEncoderCompressStreamFast()
1697 *next_out += out_bytes; in BrotliEncoderCompressStreamFast()
1698 *available_out -= out_bytes; in BrotliEncoderCompressStreamFast()
1699 s->total_out_ += out_bytes; in BrotliEncoderCompressStreamFast()
1702 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local
1704 s->available_out_ = out_bytes; in BrotliEncoderCompressStreamFast()
/third_party/skia/third_party/externals/brotli/c/enc/
Dencode.c1694 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local
1695 BROTLI_DCHECK(out_bytes <= *available_out); in BrotliEncoderCompressStreamFast()
1696 BROTLI_DCHECK((storage_ix & 7) == 0 || out_bytes < *available_out); in BrotliEncoderCompressStreamFast()
1697 *next_out += out_bytes; in BrotliEncoderCompressStreamFast()
1698 *available_out -= out_bytes; in BrotliEncoderCompressStreamFast()
1699 s->total_out_ += out_bytes; in BrotliEncoderCompressStreamFast()
1702 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local
1704 s->available_out_ = out_bytes; in BrotliEncoderCompressStreamFast()
/third_party/pulseaudio/src/pulsecore/
Dresampler.h164 size_t pa_resampler_rewind(pa_resampler *r, size_t out_bytes, pa_memblockq *history_queue, size_t a…
Dresampler.c722 size_t pa_resampler_rewind(pa_resampler *r, size_t out_bytes, pa_memblockq *history_queue, size_t a… in pa_resampler_rewind() argument
731 pa_lfe_filter_rewind(r->lfe_filter, out_bytes); in pa_resampler_rewind()
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c2291 png_uint_32 out_bytes; in zlib_advance() local
2364 out_bytes = 0; in zlib_advance()
2373 ++out_bytes) in zlib_advance()
2376 out_bytes -= zlib->z.avail_out; in zlib_advance()
2434 zlib->uncompressed_digits, out_bytes); in zlib_advance()
/third_party/astc-encoder/Source/
Dtinyexr.h2087 size_t in_bytes, out_bytes; in mz_deflate() local
2107 out_bytes = pStream->avail_out; in mz_deflate()
2111 &out_bytes, (tdefl_flush)flush); in mz_deflate()
2117 pStream->next_out += (mz_uint)out_bytes; in mz_deflate()
2118 pStream->avail_out -= (mz_uint)out_bytes; in mz_deflate()
2119 pStream->total_out += (mz_uint)out_bytes; in mz_deflate()
2241 size_t in_bytes, out_bytes, orig_avail_in; in mz_inflate() local
2265 out_bytes = pStream->avail_out; in mz_inflate()
2267 pStream->next_out, pStream->next_out, &out_bytes, in mz_inflate()
2274 pStream->next_out += (mz_uint)out_bytes; in mz_inflate()
[all …]
Dstb_image.h4802 int out_bytes = out_n * bytes; in stbi__create_png_image() local
4809 final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0); in stbi__create_png_image()
4830 memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes, in stbi__create_png_image()
4831 a->out + (j*x+i)*out_bytes, out_bytes); in stbi__create_png_image()