Home
last modified time | relevance | path

Searched refs:byte_buffer (Results 1 – 12 of 12) sorted by relevance

/third_party/ffmpeg/tests/api/
Dapi-h264-test.c39 uint8_t *byte_buffer = NULL; in video_decode_example() local
105 byte_buffer = av_malloc(byte_buffer_size); in video_decode_example()
106 if (!byte_buffer) { in video_decode_example()
148 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size, in video_decode_example()
158 …number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes… in video_decode_example()
170 av_freep(&byte_buffer); in video_decode_example()
Dapi-band-test.c72 uint8_t *byte_buffer = NULL; in video_decode() local
148 byte_buffer = av_malloc(byte_buffer_size); in video_decode()
149 if (!byte_buffer) { in video_decode()
192 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size, in video_decode()
203 if (av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes) != in video_decode()
217 av_freep(&byte_buffer); in video_decode()
Dapi-seek-test.c82 uint8_t *byte_buffer; in compute_crc_of_packets() local
86 byte_buffer = av_malloc(byte_buffer_size); in compute_crc_of_packets()
87 if (!byte_buffer) { in compute_crc_of_packets()
138 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size, in compute_crc_of_packets()
147 crc = av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes); in compute_crc_of_packets()
162 av_freep(&byte_buffer); in compute_crc_of_packets()
/third_party/mesa3d/src/gallium/tests/unit/
Dtranslate_test.c59 unsigned char* byte_buffer; in main() local
139 byte_buffer = align_malloc(buffer_size, 4096); in main()
157 byte_buffer[i] = rand() & 0x7f7f7f7f; in main()
264 buffer[0] = byte_buffer; in main()
/third_party/flutter/engine/flutter/lib/ui/window/
Dplatform_message_response_dart.cc72 Dart_Handle byte_buffer = WrapByteData(std::move(data)); in Complete() local
73 tonic::DartInvoke(callback.Release(), {byte_buffer}); in Complete()
/third_party/libsnd/src/
Dalac.c64 uint8_t byte_buffer [ALAC_MAX_CHANNEL_COUNT * ALAC_BYTE_BUFFER_SIZE] ; member
418 if (packet_size > sizeof (plac->byte_buffer)) in alac_decode_block()
423 if ((packet_size != psf_fread (plac->byte_buffer, 1, packet_size, psf))) in alac_decode_block()
426 BitBufferInit (&bit_buffer, plac->byte_buffer, packet_size) ; in alac_decode_block()
443 alac_encode (penc, plac->partial_block_frames, plac->buffer, plac->byte_buffer, &num_bytes) ; in alac_encode_block()
445 if (fwrite (plac->byte_buffer, 1, num_bytes, plac->enctmp) != num_bytes) in alac_encode_block()
/third_party/ffmpeg/libavcodec/
Dinternal.h165 uint8_t *byte_buffer; member
Dencode.c44 … av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size); in ff_alloc_packet2()
45 avpkt->data = avctx->internal->byte_buffer; in ff_alloc_packet2()
Davcodec.c587 av_freep(&avctx->internal->byte_buffer); in avcodec_close()
Dmpegvideo_enc.c1910 av_assert0(s->pb.buf == avctx->internal->byte_buffer); in ff_mpv_encode_picture()
2921 && s->pb.buf == s->avctx->internal->byte_buffer) { in ff_mpv_reallocate_putbitbuffer()
2940 memcpy(new_buffer, s->avctx->internal->byte_buffer, s->avctx->internal->byte_buffer_size); in ff_mpv_reallocate_putbitbuffer()
2941 av_free(s->avctx->internal->byte_buffer); in ff_mpv_reallocate_putbitbuffer()
2942 s->avctx->internal->byte_buffer = new_buffer; in ff_mpv_reallocate_putbitbuffer()
/third_party/grpc/
DBUILD.gn171 "${GRPC_DIR}/include/grpc/impl/codegen/byte_buffer.h",
329 "${GRPC_DIR}/include/grpc/byte_buffer.h",
1320 "${GRPC_DIR}/src/core/lib/surface/byte_buffer.cc",
1485 "${GRPC_DIR}/include/grpc++/impl/codegen/byte_buffer.h",
1536 "${GRPC_DIR}/include/grpc++/support/byte_buffer.h",
1564 "${GRPC_DIR}/include/grpcpp/impl/codegen/byte_buffer.h",
1633 "${GRPC_DIR}/include/grpcpp/support/byte_buffer.h",
1713 "${GRPC_DIR}/src/core/lib/surface/byte_buffer.cc",
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Ddart_api.h2557 DART_EXPORT Dart_Handle Dart_GetDataFromByteBuffer(Dart_Handle byte_buffer);