Home
last modified time | relevance | path

Searched refs:number_of_written_bytes (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/tests/api/
Dapi-h264-test.c42 int number_of_written_bytes; in video_decode_example() local
148 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size, in video_decode_example()
151 if (number_of_written_bytes < 0) { in video_decode_example()
154 return number_of_written_bytes; in video_decode_example()
158number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes in video_decode_example()
Dapi-band-test.c76 int number_of_written_bytes; in video_decode() local
192 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size, in video_decode()
195 if (number_of_written_bytes < 0) { in video_decode()
197 return number_of_written_bytes; in video_decode()
203 if (av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes) != in video_decode()
204 av_adler32_update(0, (const uint8_t*)slice_byte_buffer, number_of_written_bytes)) { in video_decode()
Dapi-seek-test.c79 int number_of_written_bytes; in compute_crc_of_packets() local
138 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size, in compute_crc_of_packets()
141 if (number_of_written_bytes < 0) { in compute_crc_of_packets()
143 return number_of_written_bytes; 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()