HomeSort by relevance Sort by last modified time
    Searched refs:poster (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLVideoElement.idl 35 attribute [Reflect, URL] DOMString poster;
HTMLVideoElement.cpp 99 // Force a poster recalc by setting m_displayMode to Unknown directly before calling updateDisplayState.
182 KURL poster = getNonEmptyURLAttribute(posterAttr); local
184 if (!poster.isEmpty()) {
185 // We have a poster path, but only show it until the user triggers display by playing or seeking and the
199 player()->setPoster(poster);
211 else if (displayMode() < Poster)
212 setDisplayMode(Poster);
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 80 // The poster image to be shown when the video is not playing.
83 // The poster downloader.
426 // The poster URL
430 // The poster bytes. We only touch this on the network thread.
497 Bitmap poster = BitmapFactory.decodeByteArray( local
499 mProxy.doSetPoster(poster);
535 // Tears down the poster bytes stream. Called on network thread.
609 Bitmap poster = (Bitmap) msg.obj;
610 nativeOnPosterFetched(poster, mNativePointer);
626 private void doSetPoster(Bitmap poster) {
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 247 // Send the poster
267 // - only downscale the poster, never upscale
268 // - maintain the natural aspect ratio of the poster
269 // - the poster should be centered in the target rect
279 void onPosterFetched(SkBitmap* poster)
281 m_poster = poster;
286 // of the poster. That will be overriden when onPrepare comes.
287 // In case of an error, we should report the poster size, rather
289 m_naturalSize = IntSize(poster->width(), poster->height())
    [all...]

Completed in 1693 milliseconds