/external/chromium_org/media/formats/webm/ |
cluster_builder.h | 35 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,
|
cluster_builder.cc | 16 0xE7, // Timecode ID 17 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, 90 WriteBlock(buf, track_num, timecode, flags, data, size); 95 void ClusterBuilder::AddBlockGroup(int track_num, int64 timecode, int duration, 97 AddBlockGroupInternal(track_num, timecode, true, duration, flags, data, size); 101 int64 timecode, 105 AddBlockGroupInternal(track_num, timecode, false, 0, flags, data, size) [all...] |
webm_cluster_parser.cc | 223 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 < 0) [all...] |
webm_cluster_parser.h | 202 bool OnBlock(bool is_simple_block, int track_num, int timecode, int duration,
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/ |
mkvmuxerutil.hpp | 67 // 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 th [all...] |
mkvmuxerutil.cpp | 359 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, 2) [all...] |
mkvmuxer.hpp | 159 // 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, // timecode units (absolute 788 uint64 timecode() const { return timecode_; } function in class:mkvmuxer::Cluster [all...] |
mkvmuxer.cpp | [all...] |
mkvparser.hpp | 533 static long long GetTime(const Chapters*, long long timecode); 698 // reftime = timecode of the referenced block
|
mkvparser.cpp | 1263 case 0x67: //TimeCode [all...] |
/external/libvpx/libvpx/third_party/libwebm/ |
mkvmuxerutil.hpp | 67 // 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 th [all...] |
mkvmuxerutil.cpp | 328 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, 2) [all...] |
mkvmuxer.hpp | 160 // 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, // timecode units (absolute 807 uint64 timecode() const { return timecode_; } function in class:mkvmuxer::Cluster [all...] |
mkvmuxer.cpp | [all...] |
mkvparser.hpp | 611 static long long GetTime(const Chapters*, long long timecode); 795 // reftime = timecode of the referenced block
|
mkvparser.cpp | [all...] |
/external/chromium_org/third_party/decklink/mac/include/ |
DeckLinkAPITypes.h | 51 /* Enum BMDTimecodeFlags - Timecode flags */ 75 /* Interface IDeckLinkTimecode - Used for video frame timecode representation. */ 82 virtual HRESULT GetString (/* out */ CFStringRef *timecode) = 0;
|
DeckLinkAPI_v7_9.h | 60 virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *error) = 0;
|
DeckLinkAPI_v7_6.h | 237 /* 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;
|
DeckLinkAPIDeckControl.h | 71 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;
|
DeckLinkAPI_v8_1.h | 81 virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *error) = 0;
|
DeckLinkAPI.h | 194 /* Enum BMDTimecodeFormat - Timecode formats for frame metadata */ 198 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; [all...] |
/external/chromium_org/media/filters/ |
chunk_demuxer_unittest.cc | 377 void AppendCluster(int timecode, int block_count) { 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) { 634 AppendCluster(GenerateEmptyCluster(timecode)); 800 void AddSimpleBlock(ClusterBuilder* cb, int track_num, int64 timecode) { 802 cb->AddSimpleBlock(track_num, timecode, 0, data, sizeof(data)); 805 scoped_ptr<Cluster> GenerateCluster(int timecode, int block_count) [all...] |
/external/libvpx/libvpx/third_party/nestegg/src/ |
nestegg.c | 204 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); [all...] |
/external/libvpx/libwebm/ |
mkvparser.hpp | 533 static long long GetTime(const Chapters*, long long timecode); 698 // reftime = timecode of the referenced block
|