Searched refs:stream_info (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddecode_test_driver.cc21 vpx_codec_stream_info_t *stream_info) {
24 stream_info);
77 vpx_codec_stream_info_t stream_info; local
78 stream_info.sz = sizeof(stream_info);
83 &stream_info);
20 PeekStream(const uint8_t *cxdata, size_t size, vpx_codec_stream_info_t *stream_info) argument
H A Ddecode_test_driver.h53 vpx_codec_stream_info_t *stream_info);
/external/flac/libFLAC/
H A Dstream_encoder_framing.c76 FLAC__ASSERT(metadata->data.stream_info.min_blocksize < (1u << FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN));
77 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.stream_info.min_blocksize, FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN))
79 FLAC__ASSERT(metadata->data.stream_info.max_blocksize < (1u << FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN));
80 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.stream_info.max_blocksize, FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN))
82 FLAC__ASSERT(metadata->data.stream_info.min_framesize < (1u << FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN));
83 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.stream_info.min_framesize, FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN))
85 FLAC__ASSERT(metadata->data.stream_info.max_framesize < (1u << FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN));
86 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.stream_info.max_framesize, FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN))
88 FLAC__ASSERT(FLAC__format_sample_rate_is_valid(metadata->data.stream_info.sample_rate));
89 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.stream_info
[all...]
H A Dstream_decoder.c181 FLAC__StreamMetadata stream_info; member in struct:FLAC__StreamDecoderPrivate
721 if(memcmp(decoder->private_->stream_info.data.stream_info.md5sum, decoder->private_->computed_md5sum, 16))
899 return decoder->private_->has_stream_info? decoder->private_->stream_info.data.stream_info.total_samples : 0;
1455 if(0 == memcmp(decoder->private_->stream_info.data.stream_info.md5sum, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 16))
1458 decoder->private_->metadata_callback(decoder, &decoder->private_->stream_info, decoder->private_->client_data);
1610 decoder->private_->stream_info.type = FLAC__METADATA_TYPE_STREAMINFO;
1611 decoder->private_->stream_info
[all...]
H A Dstream_encoder.c1057 encoder->private_->streaminfo.data.stream_info.min_blocksize = encoder->protected_->blocksize; /* this encoder uses the same blocksize for the whole stream */
1058 encoder->private_->streaminfo.data.stream_info.max_blocksize = encoder->protected_->blocksize;
1059 encoder->private_->streaminfo.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
1060 encoder->private_->streaminfo.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
1061 encoder->private_->streaminfo.data.stream_info.sample_rate = encoder->protected_->sample_rate;
1062 encoder->private_->streaminfo.data.stream_info.channels = encoder->protected_->channels;
1063 encoder->private_->streaminfo.data.stream_info.bits_per_sample = encoder->protected_->bits_per_sample;
1064 encoder->private_->streaminfo.data.stream_info.total_samples = encoder->protected_->total_samples_estimate; /* we will replace this later with the real total */
1065 memset(encoder->private_->streaminfo.data.stream_info.md5sum, 0, 16); /* we don't know this yet; have to fill it in later */
1081 encoder->private_->streaminfo.data.stream_info
[all...]
H A Dmetadata_object.c536 memcpy(&to->data.stream_info, &object->data.stream_info, sizeof(FLAC__StreamMetadata_StreamInfo));
885 return compare_block_data_streaminfo_(&block1->data.stream_info, &block2->data.stream_info);
H A Dmetadata_iterators.c2102 return read_metadata_block_data_streaminfo_cb_(handle, read_cb, &block->data.stream_info);
2534 return write_metadata_block_data_streaminfo_cb_(handle, write_cb, &block->data.stream_info);
/external/chromium_org/chrome/utility/media_galleries/
H A Dmedia_metadata_parser.cc87 linked_ptr<MediaGalleries::StreamInfo> stream_info(
89 stream_info->type = it->type;
94 stream_info->tags.additional_properties.SetString(tag_it->first,
98 metadata->raw_tags.push_back(stream_info);
/external/flac/include/FLAC/
H A Dformat.h605 * total_samples in the stream_info block.
844 FLAC__StreamMetadata_StreamInfo stream_info; member in union:__anon21489::__anon21490

Completed in 771 milliseconds