Searched refs:timecode (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/media/test/data/
H A Dbear-320x240-manifest.js9 { offset: 4370, size: 40778, timecode: 0.000000 },
10 { offset: 45148, size: 27589, timecode: 0.396000 },
11 { offset: 72737, size: 28183, timecode: 0.779000 },
12 { offset: 100920, size: 31600, timecode: 1.197000 },
13 { offset: 132520, size: 33922, timecode: 1.589000 },
14 { offset: 166442, size: 30587, timecode: 1.987000 },
15 { offset: 197029, size: 22079, timecode: 2.400000 },
H A Dbear-640x360-manifest.js9 { offset: 4340, size: 50950, timecode: 0.000000},
10 { offset: 55290, size: 18785, timecode: 0.527000},
11 { offset: 74075, size: 19810, timecode: 1.014000},
12 { offset: 93885, size: 21706, timecode: 1.522000},
13 { offset: 115591, size: 20249, timecode: 2.016000},
14 { offset: 135840, size: 9946, timecode: 2.515000},
/external/chromium_org/media/formats/webm/
H A Dcluster_builder.h35 void AddSimpleBlock(int track_num, int64 timecode, int flags,
37 void AddBlockGroup(int track_num, int64 timecode, int duration, int flags,
39 void AddBlockGroupWithoutBlockDuration(int track_num, int64 timecode,
46 void AddBlockGroupInternal(int track_num, int64 timecode,
52 void WriteBlock(uint8* buf, int track_num, int64 timecode, int flags,
H A Dcluster_builder.cc17 0x88, // timecode(size=8)
18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // timecode value
69 // Write the timecode into the header.
77 void ClusterBuilder::AddSimpleBlock(int track_num, int64 timecode, int flags, argument
90 WriteBlock(buf, track_num, timecode, flags, data, size);
95 void ClusterBuilder::AddBlockGroup(int track_num, int64 timecode, int duration, argument
97 AddBlockGroupInternal(track_num, timecode, true, duration, flags, data, size);
101 int64 timecode,
105 AddBlockGroupInternal(track_num, timecode, false, 0, flags, data, size);
109 void ClusterBuilder::AddBlockGroupInternal(int track_num, int64 timecode, argument
100 AddBlockGroupWithoutBlockDuration(int track_num, int64 timecode, int flags, const uint8* data, int size) argument
153 WriteBlock(uint8* buf, int track_num, int64 timecode, int flags, const uint8* data, int size) argument
[all...]
H A Dwebm_cluster_parser.cc223 int timecode = buf[1] << 8 | buf[2]; local
232 // Sign extend negative timecode offsets.
233 if (timecode & 0x8000)
234 timecode |= ~0xffff;
238 return OnBlock(is_simple_block, track_num, timecode, duration, flags,
298 int timecode,
306 MEDIA_LOG(log_cb_) << "Got a block before cluster timecode.";
310 // TODO(acolwell): Should relative negative timecode offsets be rejected? Or
311 // only when the absolute timecode is negative? See http://crbug.com/271794
312 if (timecode <
297 OnBlock(bool is_simple_block, int track_num, int timecode, int block_duration, int flags, const uint8* data, int size, const uint8* additional, int additional_size, int64 discard_padding) argument
[all...]
H A Dwebm_cluster_parser.h202 bool OnBlock(bool is_simple_block, int track_num, int timecode, int duration,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.hpp67 // timecode: Relative timecode of the Block. Only values in the
71 uint64 track_number, int64 timecode, uint64 is_key);
80 // timecode Timecode of frame, relative to cluster timecode. Only
82 // duration_timecode Duration of frame, using timecode units.
84 uint64 track_number, int64 timecode,
97 // timecode: Relative timecode of the Block. Only values in the
103 uint64 track_number, int64 timecode,
[all...]
H A Dmkvmuxerutil.cpp359 uint64 track_number, int64 timecode, uint64 is_key) {
378 if (timecode < 0 || timecode > kMaxBlockTimecode)
391 if (SerializeInt(writer, timecode, 2))
425 uint64 track_number, int64 timecode,
469 if (SerializeInt(writer, timecode, 2))
520 uint64 track_number, int64 timecode,
556 if (SerializeInt(writer, timecode, 2))
593 uint64 track_number, int64 timecode,
618 if (SerializeInt(writer, timecode,
358 WriteSimpleBlock(IMkvWriter* writer, const uint8* data, uint64 length, uint64 track_number, int64 timecode, uint64 is_key) argument
424 WriteMetadataBlock(IMkvWriter* writer, const uint8* data, uint64 length, uint64 track_number, int64 timecode, uint64 duration) argument
517 WriteBlockWithAdditional(IMkvWriter* writer, const uint8* data, uint64 length, const uint8* additional, uint64 additional_length, uint64 add_id, uint64 track_number, int64 timecode, uint64 is_key) argument
591 WriteBlockWithDiscardPadding(IMkvWriter* writer, const uint8* data, uint64 length, int64 discard_padding, uint64 track_number, int64 timecode, uint64 is_key) argument
[all...]
H A Dmkvmuxer.hpp159 // Absolute timecode according to the segment time base.
542 // their corresponding timecode values, and stores them that way.
634 // Start timecode of the chapter.
637 // Stop timecode of the chapter.
702 Cluster(uint64 timecode, int64 cues_pos);
705 // |timecode| is the absolute timecode of the cluster. |cues_pos| is the
717 // timecode: Absolute (not relative to cluster) timestamp of the
718 // frame, expressed in timecode units.
721 uint64 timecode, // timecod
788 uint64 timecode() const { return timecode_; } function in class:mkvmuxer::Cluster
[all...]
H A Dmkvmuxer.cpp1427 Cluster::Cluster(uint64 timecode, int64 cues_pos) argument
1434 timecode_(timecode),
1535 const int64 cluster_timecode = this->Cluster::timecode();
1640 if (!WriteEbmlElement(writer_, kMkvTimecode, timecode()))
1642 AddPayloadSize(EbmlElementSize(kMkvTimecode, timecode()));
2685 const uint64 last_cluster_timecode = last_cluster->timecode();
2687 // For completeness we test for the case when the frame's timecode
2688 // is less than the cluster's timecode. Although in principle that
H A Dmkvparser.hpp533 static long long GetTime(const Chapters*, long long timecode);
698 // reftime = timecode of the referenced block
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.hpp67 // timecode: Relative timecode of the Block. Only values in the
74 int64 timecode,
84 // timecode Timecode of frame, relative to cluster timecode. Only
86 // duration_timecode Duration of frame, using timecode units.
91 int64 timecode,
104 // timecode: Relative timecode of the Block. Only values in the
114 int64 timecode,
[all...]
H A Dmkvmuxerutil.cpp328 int64 timecode,
348 if (timecode < 0 || timecode > kMaxBlockTimecode)
361 if (SerializeInt(writer, timecode, 2))
398 int64 timecode,
442 if (SerializeInt(writer, timecode, 2))
497 int64 timecode,
539 if (SerializeInt(writer, timecode, 2))
579 int64 timecode,
607 if (SerializeInt(writer, timecode,
324 WriteSimpleBlock(IMkvWriter* writer, const uint8* data, uint64 length, uint64 track_number, int64 timecode, uint64 is_key) argument
394 WriteMetadataBlock(IMkvWriter* writer, const uint8* data, uint64 length, uint64 track_number, int64 timecode, uint64 duration) argument
490 WriteBlockWithAdditional(IMkvWriter* writer, const uint8* data, uint64 length, const uint8* additional, uint64 additional_length, uint64 add_id, uint64 track_number, int64 timecode, uint64 is_key) argument
574 WriteBlockWithDiscardPadding(IMkvWriter* writer, const uint8* data, uint64 length, int64 discard_padding, uint64 track_number, int64 timecode, uint64 is_key) argument
[all...]
H A Dmkvmuxer.hpp160 // Absolute timecode according to the segment time base.
546 // their corresponding timecode values, and stores them that way.
641 // Start timecode of the chapter.
644 // Stop timecode of the chapter.
709 Cluster(uint64 timecode, int64 cues_pos);
712 // |timecode| is the absolute timecode of the cluster. |cues_pos| is the
724 // timecode: Absolute (not relative to cluster) timestamp of the
725 // frame, expressed in timecode units.
730 uint64 timecode, // timecod
807 uint64 timecode() const { return timecode_; } function in class:mkvmuxer::Cluster
[all...]
H A Dmkvmuxer.cpp1468 Cluster::Cluster(uint64 timecode, int64 cues_pos) argument
1475 timecode_(timecode),
1609 const int64 cluster_timecode = this->Cluster::timecode();
1742 if (!WriteEbmlElement(writer_, kMkvTimecode, timecode()))
1744 AddPayloadSize(EbmlElementSize(kMkvTimecode, timecode()));
2845 const uint64 last_cluster_timecode = last_cluster->timecode();
2847 // For completeness we test for the case when the frame's timecode
2848 // is less than the cluster's timecode. Although in principle that
H A Dmkvparser.hpp611 static long long GetTime(const Chapters*, long long timecode);
795 // reftime = timecode of the referenced block
/external/chromium_org/third_party/decklink/mac/include/
H A DDeckLinkAPITypes.h75 /* Interface IDeckLinkTimecode - Used for video frame timecode representation. */
82 virtual HRESULT GetString (/* out */ CFStringRef *timecode) = 0;
H A DDeckLinkAPI_v7_9.h60 virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *error) = 0;
H A DDeckLinkAPI_v8_1.h81 virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *error) = 0;
H A DDeckLinkAPI_v7_6.h237 /* Interface IDeckLinkTimecode - Used for video frame timecode representation. */
244 virtual HRESULT GetString (/* out */ CFStringRef *timecode) = 0;
264 virtual HRESULT GetTimecode (BMDTimecodeFormat format, /* out */ IDeckLinkTimecode_v7_6 **timecode) = 0;
279 virtual HRESULT SetTimecode (BMDTimecodeFormat format, /* in */ IDeckLinkTimecode_v7_6 *timecode) = 0;
H A DDeckLinkAPIDeckControl.h71 bmdDeckControlPrepareForCaptureEvent = 'pfce', // This event is triggered a few frames before reaching the in-point. The serial timecode attached to IDeckLinkVideoInputFrames is now valid.
178 virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *error) = 0;
H A DDeckLinkAPI.h198 bmdTimecodeRP188VITC1 = 'rpv1', // RP188 timecode where DBB1 equals VITC1 (line 9)
199 bmdTimecodeRP188VITC2 = 'rp12', // RP188 timecode where DBB1 equals VITC2 (line 571)
200 bmdTimecodeRP188LTC = 'rplt', // RP188 timecode where DBB1 equals LTC (line 10)
201 bmdTimecodeRP188Any = 'rp18', // For capture: return the first valid timecode in {VITC1, LTC ,VITC2} - For playback: set the timecode as VITC1
579 virtual HRESULT GetTimecode (/* in */ BMDTimecodeFormat format, /* out */ IDeckLinkTimecode **timecode) = 0;
593 virtual HRESULT SetTimecode (/* in */ BMDTimecodeFormat format, /* in */ IDeckLinkTimecode *timecode) = 0;
/external/chromium_org/media/filters/
H A Dchunk_demuxer_unittest.cc377 void AppendCluster(int timecode, int block_count) { argument
378 AppendCluster(GenerateCluster(timecode, block_count));
382 int timecode, int block_count) {
397 int end_timecode = timecode + block_count * block_duration;
400 timecode, end_timecode, track_number, block_duration));
633 void AppendEmptyCluster(int timecode) { argument
634 AppendCluster(GenerateEmptyCluster(timecode));
800 void AddSimpleBlock(ClusterBuilder* cb, int track_num, int64 timecode) { argument
802 cb->AddSimpleBlock(track_num, timecode, 0, data, sizeof(data));
805 scoped_ptr<Cluster> GenerateCluster(int timecode, in argument
381 AppendSingleStreamCluster(const std::string& source_id, int track_number, int timecode, int block_count) argument
809 AddVideoBlockGroup(ClusterBuilder* cb, int track_num, int64 timecode, int duration, int flags) argument
878 GenerateSingleStreamCluster(int timecode, int end_timecode, int track_number, int block_duration) argument
920 GenerateExpectedReads(int timecode, int block_count) argument
949 GenerateSingleStreamExpectedReads(int timecode, int block_count, DemuxerStream::Type type, int block_duration) argument
962 GenerateAudioStreamExpectedReads(int timecode, int block_count) argument
967 GenerateVideoStreamExpectedReads(int timecode, int block_count) argument
972 GenerateEmptyCluster(int timecode) argument
[all...]
/external/libvpx/libvpx/third_party/nestegg/src/
H A Dnestegg.c204 struct ebml_type timecode; member in struct:cluster
312 uint64_t timecode; member in struct:nestegg_packet
383 E_FIELD(ID_TIMECODE, TYPE_UINT, struct cluster, timecode),
1247 int64_t timecode, abs_timecode; local
1272 r = ne_read_int(ctx->io, &timecode, 2);
1351 if (ne_get_uint(cluster->timecode, &cluster_tc) != 0)
1354 abs_timecode = timecode + cluster_tc;
1360 pkt->timecode = abs_timecode * tc_scale * track_scale;
1363 block_id == ID_BLOCK ? "" : "simple", pkt->track, pkt->timecode / 1e9, flags, frames);
2251 *tstamp = pkt->timecode;
[all...]
/external/libvpx/libwebm/
H A Dmkvparser.hpp533 static long long GetTime(const Chapters*, long long timecode);
698 // reftime = timecode of the referenced block

Completed in 280 milliseconds

12