Home
last modified time | relevance | path

Searched refs:preservesPitch (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
DQTMovie.h73 void loadPath(const UChar* url, int len, bool preservesPitch);
74 void load(const UChar* url, int len, bool preservesPitch);
75 void load(CFURLRef, bool preservesPitch);
DQTMovie.cpp394 void QTMovie::setPreservesPitch(bool preservesPitch) in setPreservesPitch() argument
405 if (error || prop == preservesPitch) in setPreservesPitch()
410 load(m_private->m_currentURL, preservesPitch); in setPreservesPitch()
445 void QTMovie::loadPath(const UChar* url, int len, bool preservesPitch) in loadPath() argument
450 load(cfURL, preservesPitch); in loadPath()
456 void QTMovie::load(const UChar* url, int len, bool preservesPitch) in load() argument
461 load(cfURL, preservesPitch); in load()
467 void QTMovie::load(CFURLRef url, bool preservesPitch) in load() argument
561 movieProps[moviePropCount].propValueSize = sizeof(preservesPitch); in load()
562 movieProps[moviePropCount].propValueAddress = &preservesPitch; in load()
DMediaPlayerPrivateQuickTimeWin.cpp248 m_qtMovie->load(url.characters(), url.length(), m_player->preservesPitch()); in load()
402 void MediaPlayerPrivate::setPreservesPitch(bool preservesPitch) in setPreservesPitch() argument
406 m_qtMovie->setPreservesPitch(preservesPitch); in setPreservesPitch()
DMediaPlayerPrivateQuickTimeVisualContext.cpp381 …_movie->load(resource->path().characters(), resource->path().length(), m_player->preservesPitch()); in loadInternal()
384 m_movie->load(url.characters(), url.length(), m_player->preservesPitch()); in loadInternal()
548 void MediaPlayerPrivateQuickTimeVisualContext::setPreservesPitch(bool preservesPitch) in setPreservesPitch() argument
552 m_movie->setPreservesPitch(preservesPitch); in setPreservesPitch()
/external/webkit/Source/WebCore/platform/graphics/
DMediaPlayer.cpp378 m_private->setPreservesPitch(preservesPitch()); in loadWithNextMediaEngine()
567 bool MediaPlayer::preservesPitch() const in preservesPitch() function in WebCore::MediaPlayer
572 void MediaPlayer::setPreservesPitch(bool preservesPitch) in setPreservesPitch() argument
574 m_preservesPitch = preservesPitch; in setPreservesPitch()
575 m_private->setPreservesPitch(preservesPitch); in setPreservesPitch()
DMediaPlayer.h225 bool preservesPitch() const;
/external/webkit/Source/WebCore/html/
DHTMLMediaElement.cpp1368 void HTMLMediaElement::setWebkitPreservesPitch(bool preservesPitch) in setWebkitPreservesPitch() argument
1370 LOG(Media, "HTMLMediaElement::setWebkitPreservesPitch(%s)", boolString(preservesPitch)); in setWebkitPreservesPitch()
1372 m_webkitPreservesPitch = preservesPitch; in setWebkitPreservesPitch()
1377 m_player->setPreservesPitch(preservesPitch); in setWebkitPreservesPitch()
/external/webkit/Source/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.mm256 … [NSNumber numberWithBool:m_player->preservesPitch()], QTMovieRateChangesPreservePitchAttribute,
951 void MediaPlayerPrivateQTKit::setPreservesPitch(bool preservesPitch)
958 …Movie.get() attributeForKey:QTMovieRateChangesPreservePitchAttribute] boolValue] == preservesPitch)
963 …[movieAttributes.get() setValue:[NSNumber numberWithBool:preservesPitch] forKey:QTMovieRateChanges…
/external/webkit/Source/WebCore/
DChangeLog-2010-01-292305 preservesPitch values to newly created platform media player instance.
95367 (WebCore::MediaPlayer::preservesPitch):