Searched refs:preservesPitch (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
H A 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);
H A DQTMovie.cpp394 void QTMovie::setPreservesPitch(bool preservesPitch) argument
405 if (error || prop == preservesPitch)
410 load(m_private->m_currentURL, preservesPitch);
445 void QTMovie::loadPath(const UChar* url, int len, bool preservesPitch) argument
450 load(cfURL, preservesPitch);
456 void QTMovie::load(const UChar* url, int len, bool preservesPitch) argument
461 load(cfURL, preservesPitch);
467 void QTMovie::load(CFURLRef url, bool preservesPitch) argument
561 movieProps[moviePropCount].propValueSize = sizeof(preservesPitch);
562 movieProps[moviePropCount].propValueAddress = &preservesPitch;
[all...]
H A DMediaPlayerPrivateQuickTimeWin.cpp248 m_qtMovie->load(url.characters(), url.length(), m_player->preservesPitch());
402 void MediaPlayerPrivate::setPreservesPitch(bool preservesPitch) argument
406 m_qtMovie->setPreservesPitch(preservesPitch);
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp381 m_movie->load(resource->path().characters(), resource->path().length(), m_player->preservesPitch());
384 m_movie->load(url.characters(), url.length(), m_player->preservesPitch());
548 void MediaPlayerPrivateQuickTimeVisualContext::setPreservesPitch(bool preservesPitch) argument
552 m_movie->setPreservesPitch(preservesPitch);
/external/webkit/Source/WebCore/platform/graphics/
H A DMediaPlayer.cpp378 m_private->setPreservesPitch(preservesPitch());
567 bool MediaPlayer::preservesPitch() const function in class:WebCore::MediaPlayer
572 void MediaPlayer::setPreservesPitch(bool preservesPitch) argument
574 m_preservesPitch = preservesPitch;
575 m_private->setPreservesPitch(preservesPitch);
H A DMediaPlayer.h225 bool preservesPitch() const;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DMediaPlayerPrivateQTKit.mm256 [NSNumber numberWithBool:m_player->preservesPitch()], QTMovieRateChangesPreservePitchAttribute,
951 void MediaPlayerPrivateQTKit::setPreservesPitch(bool preservesPitch)
958 if ([[m_qtMovie.get() attributeForKey:QTMovieRateChangesPreservePitchAttribute] boolValue] == preservesPitch)
963 [movieAttributes.get() setValue:[NSNumber numberWithBool:preservesPitch] forKey:QTMovieRateChangesPreservePitchAttribute];
/external/webkit/Source/WebCore/html/
H A DHTMLMediaElement.cpp1368 void HTMLMediaElement::setWebkitPreservesPitch(bool preservesPitch) argument
1370 LOG(Media, "HTMLMediaElement::setWebkitPreservesPitch(%s)", boolString(preservesPitch));
1372 m_webkitPreservesPitch = preservesPitch;
1377 m_player->setPreservesPitch(preservesPitch);

Completed in 104 milliseconds