Home | History | Annotate | Download | only in win

Lines Matching refs:contextType

42     QTMovieVisualContextPriv(QTMovieVisualContext* parent, QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType);
64 static CFDictionaryRef createPixelBufferOptionsDictionary(QTPixelBuffer::Type contextType)
67 const void* value = QTPixelBuffer::createPixelBufferAttributesDictionary(contextType);
73 static CFDictionaryRef pixelBufferCreationOptions(QTPixelBuffer::Type contextType)
75 if (contextType == QTPixelBuffer::ConfigureForCAImageQueue) {
76 static CFDictionaryRef imageQueueOptions = createPixelBufferOptionsDictionary(contextType);
80 ASSERT(contextType == QTPixelBuffer::ConfigureForCGImage);
81 static CFDictionaryRef cgImageOptions = createPixelBufferOptionsDictionary(contextType);
85 QTMovieVisualContextPriv::QTMovieVisualContextPriv(QTMovieVisualContext* parent, QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType)
101 OSStatus status = pPixelBufferContextCreate(kCFAllocatorDefault, pixelBufferCreationOptions(contextType), &m_visualContext);
176 PassRefPtr<QTMovieVisualContext> QTMovieVisualContext::create(QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType)
178 return adoptRef(new QTMovieVisualContext(client, contextType));
181 QTMovieVisualContext::QTMovieVisualContext(QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType)
182 : m_private(new QTMovieVisualContextPriv(this, client, contextType))