/external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/ |
D | main.m | 72 QTMovie *movie; field 176 [obj->movie stop]; 238 if (!obj->movie) 241 if ([obj->movie rate] == 0) 242 [obj->movie play]; 244 [obj->movie stop]; 282 // Hide the controller layer if the movie is playing. 283 if ([obj->movie rate]) 304 [obj->movie stepForward]; 306 [obj->movie stepBackward]; [all …]
|
D | MovieControllerLayer.h | 69 - (void)setMovie:(QTMovie *)movie;
|
D | MovieControllerLayer.m | 251 - (void)setMovie:(QTMovie *)movie 253 if (_movie == movie) 266 _movie = [movie retain];
|
/external/skia/src/images/ |
D | SkImageDecoder_Factory.cpp | 49 SkMovie* movie = curr->factory()(stream); in DecodeStream() local 50 if (movie) { in DecodeStream() 51 return movie; in DecodeStream()
|
D | SkMovie.cpp | 87 SkMovie* movie = NULL; in DecodeFile() local 91 movie = SkMovie::DecodeStream(&stream); in DecodeFile() 99 return movie; in DecodeFile()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | MediaPlayerPrivateQuickTimeWin.cpp | 522 void MediaPlayerPrivate::movieEnded(QTMovieWin* movie) in movieEnded() argument 527 ASSERT(m_qtMovie.get() == movie); in movieEnded() 531 void MediaPlayerPrivate::movieLoadStateChanged(QTMovieWin* movie) in movieLoadStateChanged() argument 536 ASSERT(m_qtMovie.get() == movie); in movieLoadStateChanged() 540 void MediaPlayerPrivate::movieTimeChanged(QTMovieWin* movie) in movieTimeChanged() argument 545 ASSERT(m_qtMovie.get() == movie); in movieTimeChanged() 550 void MediaPlayerPrivate::movieNewImageAvailable(QTMovieWin* movie) in movieNewImageAvailable() argument 555 ASSERT(m_qtMovie.get() == movie); in movieNewImageAvailable()
|
D | QTMovieWin.cpp | 870 pascal OSErr movieDrawingCompleteProc(Movie movie, long data) in movieDrawingCompleteProc() argument
|
/external/skia/src/ports/ |
D | SkImageDecoder_empty.cpp | 81 SkMovie* movie = gMovieProcs[i](stream); in DecodeStream() local 82 if (NULL != movie) { in DecodeStream() 83 return movie; in DecodeStream()
|
/external/webkit/WebKitLibraries/ |
D | WebKitSystemInterface.h | 189 int WKQTMovieGetType(QTMovie* movie); 192 int WKQTMovieDataRate(QTMovie* movie); 193 float WKQTMovieMaxTimeLoaded(QTMovie* movie); 194 float WKQTMovieMaxTimeSeekable(QTMovie* movie);
|
/external/skia/src/animator/ |
D | SkAnimateMaker.cpp | 240 SkDisplayMovie* movie = (SkDisplayMovie*) displayable; 241 SkAnimateMaker* movieMaker = movie->fMovie.fMaker; 334 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; in setEnableTime() local 335 movie->fMovie.fMaker->setEnableTime(appTime, expectedTime); in setEnableTime()
|
D | SkDisplayEvents.cpp | 54 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; in doEvent() local 56 movie->doEvent(kind, state); in doEvent()
|
D | SkDisplayPost.cpp | 269 SkDisplayMovie* movie = (SkDisplayMovie*) displayable; in findSinkID() local 270 fTargetMaker = movie->fMovie.fMaker; in findSinkID()
|
D | SkAnimator.cpp | 202 const SkDisplayMovie* movie = (const SkDisplayMovie*) displayable; in getAnimator() local 203 return movie->getAnimator(); in getAnimator() 451 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; in onEvent() local 452 movie->doEvent(evt); in onEvent()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | MediaPlayerPrivateQTKit.mm | 175 -(void)setMovie:(id)movie; 399 // associate our movie with our instance of QTVideoRendererWebKitOnly 421 // disassociate our movie from our instance of QTVideoRendererWebKitOnly 460 // disassociate our movie from our instance of QTMovieLayer 705 // initial movie scale because the spec says intrinsic size is: 875 …// If this movie is reloading and we mean to restore the current time/rate, this might be the righ… 988 // It may not be possible to seek to a specific time in a streamed movie. When seeking in a 989 // stream QuickTime sets the movie time to closest time possible and posts a timechanged 1020 // Don't resize the view now because [view setFrame] also resizes the movie itself, and because 1023 …// QuickTime to miss resetting a movie's size when the media size changes (as happens with an rtsp… [all …]
|
/external/webkit/WebCore/platform/network/mac/ |
D | WebCoreURLResponse.mm | 119 @"movie", 257 @"video/x-sgi-movie", @"movie",
|
/external/webkit/WebCore/platform/mac/ |
D | WebCoreSystemInterface.h | 126 extern int (*wkQTMovieGetType)(QTMovie* movie);
|
D | WebCoreSystemInterface.mm | 60 int (*wkQTMovieGetType)(QTMovie* movie);
|
/external/webkit/WebKitExamplePlugins/ |
D | ChangeLog | 17 Add Core Animation movie plug-in example.
|
/external/webkit/WebCore/ |
D | ChangeLog | 15062 thumb is being dragged (e.g. scrub to end of movie) 15667 No test case because this depends on how the movie is loaded. 16402 <rdar://problem/7008093> Media controller can’t be used to scrub when movie is 16405 Do not show media controller time display elements when the a movie is too narrow. 16422 Show/hide the time display elements as the movie width changes. 17699 <rdar://problem/7009870> After <audio> movie finishes playing, Pause button fails to change 17974 … Don't bother stopping a movie that isn't playing. Minor cleanup to make the code more readable. 17978 A streaming movie has as much data as it needs once it reaches "playable", so 17979 set the ready state to HaveFutureData. A movie with metadata doesn't drop back 17980 to "have nothing" when seeking. A streaming movie doesn't use the network when paused. [all …]
|
D | ChangeLog-2009-06-16 | 13364 (QTMovieWin::load): Ditto. Add ASSERT to ensure that static movie property array isn't 16184 size and natural size so naturalSize() accounts for non-identity movie matrix. 16190 (QTMovieWinPrivate::setSize): Do not change movie box before reaching kMovieLoadStateLoaded 16191 because we need to get the movie's initial size in cacheMovieScale. 16307 … multiplier to scale from natural size to current size when a movie is opened and use that to 16315 size and natural size so naturalSize() accounts for non-identity movie matrix. 16353 …to continually resize after full page zooming, by using the movie's natual size (which is independ… 16368 <rdar://problem/6642221> REGRESSION: With the Movie widget, movie trailer fails to 16369 load if movie had been previously viewed 16857 …(WebCore::MediaPlayerPrivate::updateStates): Call sawUnsupportedTracks if the movie has unsupported [all …]
|
/external/webkit/SunSpider/tests/parse-only/ |
D | mootools-1.2.2-core-nc.js | 3089 params.movie = path;
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2002-12-03 | 138 - fixed 3098356 - Hard hang on movie search at www.movietickets.com
|
/external/webkit/WebKit/mac/ |
D | ChangeLog-2006-02-09 | 3505 …Fixes <rdar://problem/4237479> REGRESSION (Cambridge-Denver): old QuickTime movie continues to pla… 3506 …We were adding the movie to the document twice after the changes were added to handle fallback con… 8403 Fixed: <rdar://problem/3934749> assertion failure in WebBaseNetscapePluginView loading movie 18543 - finished fix to 3109132: can't open movie file via open panel 19833 …<rdar://problem/3109132>: Can't open movie file via open panel even though it can be dropped in br… 26726 Fixed: 3140990 - Safari: Error attempting to load movie from Rhino records 27109 … 3220349 - assertion failure in [WebFrame _recursiveGoToItem:...] hitting Back while loading movie 33125 Fixed: 3143656 - crash in MIMETypeForFile when a large QT movie is dragged over window 33723 - fixed 3136801 -- scrolling a page that contains a QuickTime movie leaves garbage behind 33749 - fixed 3120630 -- spacebar scrolls the page as well as pausing the QuickTime movie
|
D | ChangeLog-2007-10-14 | 3248 … <rdar://problem/5271774> REGRESSION: A crash occurs when closing a window that contains a QT movie 4790 …www.jumpskyhigh.com had a flash movie that was embedded inside an <a> tag and clicking on the plug… 5321 navigating away from page with DivX movie plug-in (13203) 5370 navigating away from page with DivX movie plug-in (13203) 17253 - fixed REGRESSION: crash when leaving youtube page while movie is still loading 20962 REGRESSION: Flash movie audible but not visible until window is resized
|
D | ChangeLog | 953 <rdar://problem/7014813> Ask media engine if a movie is streamed or downloaded. 2207 ProxyInstance::fieldNamed() when viewing movie trailer 11920 <rdar://problem/6134133> - Crash when loading large movie as a standalone document 18778 …involving a 150MB Flash movie being streamed from a local web server this reduces memory consumpti…
|