HomeSort by relevance Sort by last modified time
    Searched defs:hasVideo (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLVideoElement.h 80 virtual bool hasVideo() const { return player() && player()->hasVideo(); }
HTMLMediaElement.h 61 virtual bool hasVideo() const { return false; }
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.h 54 bool hasVideo() const { return m_hasVideo; }
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 73 stream << " | Has video: " << mediaObject.hasVideo();
208 bool MediaPlayerPrivatePhonon::hasVideo() const
210 bool hasVideo = m_mediaObject->hasVideo();
211 LOG(Media, "MediaPlayerPrivatePhonon::hasVideo() -> %s", hasVideo ? "true" : "false");
212 return hasVideo;
439 if (!hasVideo()) {
506 void MediaPlayerPrivatePhonon::hasVideoChanged(bool hasVideo)
508 LOG(Media, "MediaPlayerPrivatePhonon::hasVideoChanged(%s)", hasVideo ? "true" : "false")
    [all...]
MediaPlayerPrivateQt.cpp 161 bool MediaPlayerPrivateQt::hasVideo() const
545 if (!hasVideo() || m_readyState < MediaPlayer::HaveMetadata) {
546 LOG(Media, "MediaPlayerPrivateQt::naturalSize() -> 0x0 (!hasVideo || !haveMetaData)");
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 461 bool hasVideo = false;
487 } else if (!hasVideo && !strncasecmp("video/", mime, 6)) {
488 hasVideo = true;
516 if (hasVideo) {
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 307 virtual bool hasVideo() const { return true; }
422 virtual bool hasVideo() const { return false; }
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 122 if (hasVideo() && supportsAcceleratedRendering() && !m_videoLayer.get())
274 bool WebMediaPlayerClientImpl::hasVideo() const
277 return m_webMediaPlayer->hasVideo();
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 524 bool WebMediaPlayerImpl::hasVideo() const {
527 return pipeline_->HasVideo();
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 127 virtual bool hasVideo() const { return m_cachedHasVideo; }
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 374 bool MediaPlayerPrivate::hasVideo() const
378 return m_qtMovie->hasVideo();
QTMovie.cpp 719 bool QTMovie::hasVideo() const
MediaPlayerPrivateQuickTimeVisualContext.cpp 515 bool MediaPlayerPrivateQuickTimeVisualContext::hasVideo() const
519 return m_movie->hasVideo();
    [all...]
  /frameworks/av/libvideoeditor/vss/3gpwriter/inc/
M4MP4W_Types.h 290 M4OSA_Bool hasVideo;
  /packages/apps/Mms/src/com/android/mms/model/
SlideModel.java 485 public boolean hasVideo() {
530 if (!hasAudio() && !hasVideo()) {
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 100 virtual bool hasVideo() const { return false; }
478 bool MediaPlayer::hasVideo() const
480 return m_private->hasVideo();

Completed in 173 milliseconds