Searched refs:tracks (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DMakeTextMovie.tcl6 .m tracks new text 100 100
9 .m tracks add text 1 0 600 One
10 .m tracks add text 1 600 600 Two
11 .m tracks add text 1 1200 600 Three
12 .m tracks add text 1 1800 600 Four
13 .m tracks add text 1 2400 600 Five
14 .m tracks add text 1 3000 600 Six
15 .m tracks add text 1 3600 600 Seven
16 .m tracks add text 1 4200 600 Eight
17 .m tracks ad
[all...]
H A DTestJPEGQuality.tcl11 .m tracks new video $width $height
14 .m tracks add picture 1 0 600 $firstImage -compressor jpeg -spatialquality max
15 .m tracks add picture 1 600 600 $firstImage -compressor jpeg -spatialquality high
16 .m tracks add picture 1 1200 600 $firstImage -compressor jpeg -spatialquality normal
17 .m tracks add picture 1 1800 600 $firstImage -compressor jpeg -spatialquality low
18 .m tracks add picture 1 2400 600 $firstImage -compressor jpeg -spatialquality min
19 .m tracks add picture 1 3000 600 $firstImage -compressor jpeg -colordepth 40 -spatialquality max
20 .m tracks add picture 1 3600 600 $firstImage -compressor jpeg -colordepth 40 -spatialquality high
21 .m tracks add picture 1 4200 600 $firstImage -compressor jpeg -colordepth 40 -spatialquality normal
22 .m tracks ad
[all...]
H A DTwoSourceEffect.tcl29 .m tracks new video $width $height
30 .m tracks new video $width $height
33 .m tracks add picture 1 0 6000 $firstImage
34 .m tracks add picture 2 0 6000 $secondImage
37 .m tracks configure 2 -offset 3000
47 set ans [.m tracks new text]
49 .m tracks add text $textTrackID 0 3000 {Two source video effect. Here it comes...} \
51 .m tracks add text $textTrackID 6000 3000 {It is best if images are of same size.} \
53 .m tracks configure $textTrackID -graphicsmode transparent -graphicsmodecolor black
H A DMake25fpsMovie.tcl11 .m tracks new video 360 288
15 .m tracks add picture 1 0 $frameDuration $imageList -dialog 0 -keyframerate 25
H A DTestAddImage.tcl11 .m tracks new video $width $height
14 .m tracks add picture 1 0 600 $firstImage -compressor jpeg -dialog 0 \
H A DTestSequence.tcl28 .m tracks new video $width $height
31 .m tracks add picture 1 0 300 $imageList -dialog 1 -compressor {smc } -colordepth 8
32 #.m tracks add picture 1 0 300 $imageList -dialog 1 -compressor jpeg
H A DSimpleEditTimecode.tcl124 set desc [$w tracks full]
218 set nsamp [$w tracks media samplecount $videoTrack]
219 array set trackArr [$w tracks full $videoTrack]
228 $w tracks configure $id -graphicsmode addmin
H A DFastMotionMovieMaker.tcl93 set res [$wmovie tracks new video $width $height]
116 $wmovie tracks add picture $trackID $starttime $duration $imageList
H A DSimpleEdit.tcl124 set desc [$theMovie tracks full]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/examples/Schema/
H A Dinsertdb.pl38 my %tracks = (
48 my @tracks;
49 foreach my $track (keys %tracks) {
51 title => $tracks{$track},
53 push @tracks, [$cd->id, $track];
58 @tracks,
H A Dtestdb.pl62 'tracks.title' => $tracktitle
65 join => [qw/ tracks /],
96 'tracks.title' => $tracktitle
100 'cds' => 'tracks'
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DTextTrackList.cpp73 // Calculate the "Let n be the number of text tracks whose text track mode is showing and that are in the media element's list of text tracks before track."
111 // The text tracks are sorted as follows:
112 // 1. The text tracks corresponding to track element children of the media element, in tree order.
113 // 2. Any text tracks added using the addTextTrack() method, in the order they were added, oldest first.
114 // 3. Any media-resource-specific text tracks (text tracks corresponding to data in the media
133 Vector<RefPtr<TrackBase> >* tracks = 0; local
136 tracks = &m_elementTracks;
142 tracks
186 Vector<RefPtr<TrackBase> >* tracks = 0; local
212 const Vector<RefPtr<TrackBase> >* tracks = 0; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/lib/DBICTest/Schema/
H A DYear2000CDs.pm16 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track',
H A DYear1999CDs.pm36 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track',
H A DCD.pm49 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track' );
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DMediaStream.cpp91 PassRefPtr<MediaStream> MediaStream::create(ScriptExecutionContext* context, const MediaStreamTrackVector& tracks) argument
96 for (size_t i = 0; i < tracks.size(); ++i)
97 processTrack(tracks[i].get(), tracks[i]->kind() == "audio" ? audioSources : videoSources);
285 MediaStreamTrackVector* tracks = 0;
288 tracks = &m_audioTracks;
291 tracks = &m_videoTracks;
296 for (size_t i = 0; i < tracks->size(); ++i) {
297 if ((*tracks)[i]->component() == component) {
305 RefPtr<MediaStreamTrack> track = (*tracks)[inde
[all...]
H A DMediaStream.idl30 Constructor(MediaStreamTrack[] tracks),
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderGrid.cpp195 // only want to account for fixed grid tracks and grid items. Also this will be incorrect if we have spanning
266 Vector<GridTrack>& tracks = (direction == ForColumns) ? columnTracks : rowTracks;
267 for (size_t i = 0; i < tracks.size(); ++i) {
268 GridTrack& track = tracks[i];
279 // FIXME: We shouldn't call resolveContentBasedTrackSizingFunctions if we have no min-content / max-content tracks.
285 const size_t tracksSize = tracks.size();
288 tracksForDistribution[i] = tracks.data() + i;
415 // FIXME: Split the grid tracks once we support fractions (step 1 of the algorithm).
417 Vector<GridTrack>& tracks = (direction == ForColumns) ? columnTracks : rowTracks; local
427 for (size_t i = 0; i < tracks
442 Vector<GridTrack*> tracks; local
467 distributeSpaceToTracks(Vector<GridTrack*>& tracks, Vector<GridTrack*>* tracksForGrowthAboveMaxBreadth, AccumulatorGetter trackGetter, AccumulatorGrowFunction trackGrowthFunction, LayoutUnit& availableLogicalSpace) argument
500 tracksAreWiderThanMinTrackBreadth(TrackSizingDirection direction, const Vector<GridTrack>& tracks) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/oreilly-oscon2001/
H A Doscon69 global rooms tracks
75 array set tracks {}
84 global rooms tracks
126 set tracks($track) .
217 global rooms tracks
226 sched add columns [array size tracks]
227 schedr add columns [array size tracks]
229 #log::log info Tracks=[array size tracks]
234 foreach k [lsort [array names tracks]] {
236 set tracks(
[all...]
/macosx-10.9.5/IOCDStorageFamily-51/
H A DIOCDPartitionScheme.cpp174 CDTrack * tracks = 0; local
218 tracks = IONew(CDTrack, kCDTrackMaxIndex + 1);
219 if ( tracks == 0 ) goto scanErr;
221 bzero(tracks, (kCDTrackMaxIndex + 1) * sizeof(CDTrack));
224 // and tracks on the CD, but without making assumptions about the order
238 CDTrack * track = tracks + descriptor->point;
269 // Record whether the session has "form 1" or "form 2" tracks.
291 // Pre-scan the ordered list of tracks.
295 CDTrack * track = tracks + index;
373 // Create a media object to represent the linked data tracks, th
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Scripts/
H A Ditunes_albums.rb71 album of tracks of library playlist 1
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DMediaPlayerPrivateAVFoundationCF.cpp718 RetainPtr<CFArrayRef> tracks = adoptCF(AVCFAssetCopyAssetTracks(avAsset(m_avfWrapper))); local
719 CFIndex trackCount = CFArrayGetCount(tracks.get());
721 AVCFAssetTrackRef assetTrack = (AVCFAssetTrackRef)CFArrayGetValueAtIndex(tracks.get(), i);
871 // This is called whenever the tracks collection changes so cache hasVideo and hasAudio since we are
890 RetainPtr<CFArrayRef> tracks = adoptCF(AVCFPlayerItemCopyTracks(avPlayerItem(m_avfWrapper))); local
892 CFIndex trackCount = CFArrayGetCount(tracks.get());
894 AVCFPlayerItemTrackRef track = (AVCFPlayerItemTrackRef)(CFArrayGetValueAtIndex(tracks.get(), i));
899 // Asset tracks may not be available yet when streaming. <rdar://problem/16160699>
960 RetainPtr<CFArrayRef> tracks = adoptCF(AVCFAssetCopyTracksWithMediaType(avAsset(m_avfWrapper), AVCFMediaCharacteristicVisual)); local
961 CFIndex trackCount = CFArrayGetCount(tracks
1004 RetainPtr<CFArrayRef> tracks = adoptCF(AVCFPlayerItemCopyTracks(avPlayerItem(m_avfWrapper))); local
1139 RetainPtr<CFArrayRef> tracks = adoptCF(AVCFAssetCopyTracksWithMediaType(avAsset(m_avfWrapper), AVCFMediaTypeAudio)); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateAVFoundationObjC.mm761 NSArray *tracks = [m_avAsset.get() tracks];
762 for (AVAssetTrack *thisTrack in tracks)
1008 // This is called whenever the tracks collection changes so cache hasVideo and hasAudio since we are
1021 NSArray *tracks = [m_avPlayerItem.get() tracks];
1022 for (AVPlayerItemTrack *track in tracks) {
1075 NSArray *tracks = [m_avAsset.get() tracks];
1078 // want to report a size as early as possible so use presentationSize when an asset has no tracks
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.h120 static void setTracksRepaints(WebKitWebFrame*, bool tracks);
H A DDumpRenderTreeSupportGtk.cpp663 void DumpRenderTreeSupportGtk::setTracksRepaints(WebKitWebFrame* frame, bool tracks) argument
669 coreFrame->view()->setTracksRepaints(tracks);

Completed in 121 milliseconds

12