Home | History | Annotate | Download | only in filters

Lines Matching refs:block_count

297   void AppendCluster(int timecode, int block_count) {
298 AppendCluster(GenerateCluster(timecode, block_count));
302 int timecode, int block_count) {
313 int end_timecode = timecode + block_count * block_duration;
530 scoped_ptr<Cluster> GenerateCluster(int timecode, int block_count) {
531 return GenerateCluster(timecode, timecode, block_count);
545 int block_count) {
546 CHECK_GT(block_count, 0);
554 if (block_count == 1) {
567 for (int i = 0; i < block_count - 2; i++) {
641 void GenerateExpectedReads(int timecode, int block_count) {
642 GenerateExpectedReads(timecode, timecode, block_count);
647 int block_count) {
648 CHECK_GT(block_count, 0);
650 if (block_count == 1) {
658 for (int i = 0; i < block_count; i++) {
671 int block_count,
674 CHECK_GT(block_count, 0);
677 for (int i = 0; i < block_count; i++) {
683 void GenerateAudioStreamExpectedReads(int timecode, int block_count) {
685 timecode, block_count, DemuxerStream::AUDIO, kAudioBlockDuration);
688 void GenerateVideoStreamExpectedReads(int timecode, int block_count) {
690 timecode, block_count, DemuxerStream::VIDEO, kVideoBlockDuration);