• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/

Lines Matching defs:self

1429     AVFWrapper* self = avfWrapperForCallbackContext(context);
1430 if (!self) {
1436 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::PlayerTimeChanged, time);
1460 AVFWrapper* self = avfWrapperForCallbackContext(notificationData->m_context);
1461 if (!self) {
1469 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemDidPlayToEndTime);
1471 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemTracksChanged);
1473 AVCFURLAssetRef asset = AVCFPlayerItemGetAsset(self->avPlayerItem());
1475 self->setAsset(asset);
1476 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemStatusChanged);
1478 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemSeekableTimeRangesChanged);
1480 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemLoadedTimeRangesChanged);
1482 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemPresentationSizeChanged);
1484 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemIsPlaybackLikelyToKeepUpChanged);
1486 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemIsPlaybackBufferEmptyChanged);
1488 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ItemIsPlaybackBufferFullChanged);
1490 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::PlayerRateChanged);
1492 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::ContentsNeedsDisplay);
1494 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::DurationChanged);
1515 AVFWrapper* self = avfWrapperForCallbackContext(context);
1516 if (!self) {
1521 LOG(Media, "AVFWrapper::loadPlayableCompletionCallback(%p)", self);
1522 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::AssetPlayabilityKnown);
1543 AVFWrapper* self = avfWrapperForCallbackContext(context);
1544 if (!self) {
1549 LOG(Media, "AVFWrapper::loadMetadataCompletionCallback(%p)", self);
1550 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::AssetMetadataLoaded);
1563 AVFWrapper* self = avfWrapperForCallbackContext(context);
1564 if (!self) {
1569 LOG(Media, "AVFWrapper::seekCompletedCallback(%p)", self);
1570 self->m_owner->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::SeekCompleted, static_cast<bool>(finished));
1603 AVFWrapper* self = avfWrapperForCallbackContext(legibleOutputData->m_context);
1604 if (!self) {
1609 if (!self->m_currentTrack)
1612 self->m_currentTrack->processCue(legibleOutputData->m_attributedStrings.get(), legibleOutputData->m_time);
1619 AVFWrapper* self = avfWrapperForCallbackContext(context);
1620 if (!self) {
1625 LOG(Media, "AVFWrapper::legibleOutputCallback(%p)", self);
1627 ASSERT(legibleOutput == self->m_legibleOutput);