Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c22663a7
Kaydet (Commit)
c22663a7
authored
Agu 30, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I8e97aaad72e8f6876c912e17a09de83d631b26fc
üst
1769cbd2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
15 deletions
+3
-15
player.hxx
avmedia/source/quicktime/player.hxx
+0
-7
player.mm
avmedia/source/quicktime/player.mm
+3
-8
No files found.
avmedia/source/quicktime/player.hxx
Dosyayı görüntüle @
c22663a7
...
@@ -87,15 +87,8 @@ private:
...
@@ -87,15 +87,8 @@ private:
double
mnStopTime
;
double
mnStopTime
;
sal_Bool
mbMuted
;
sal_Bool
mbMuted
;
sal_Bool
mbLooping
;
sal_Bool
mbInitialized
;
sal_Bool
mbInitialized
;
long
mnWindowID
;
long
mnDuration
;
int
mnWidth
;
int
mnHeight
;
long
mnVersion
;
oslCondition
maSizeCondition
;
oslCondition
maSizeCondition
;
};
};
...
...
avmedia/source/quicktime/player.mm
Dosyayı görüntüle @
c22663a7
...
@@ -49,13 +49,7 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
...
@@ -49,13 +49,7 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
mnUnmutedVolume( 0 ),
mnUnmutedVolume( 0 ),
mnStopTime( DBL_MAX ), //max double
mnStopTime( DBL_MAX ), //max double
mbMuted( false ),
mbMuted( false ),
mbLooping( false ),
mbInitialized( false ),
mbInitialized( false ),
mnWindowID( 0 ),
mnDuration( 0 ),
mnWidth( 0 ),
mnHeight( 0 ),
mnVersion( 0 ),
maSizeCondition( osl_createCondition() )
maSizeCondition( osl_createCondition() )
{
{
OSErr result;
OSErr result;
...
@@ -63,8 +57,9 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
...
@@ -63,8 +57,9 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
NSApplicationLoad();
NSApplicationLoad();
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
// check the version of QuickTime installed
// check the version of QuickTime installed
result = Gestalt(gestaltQuickTime,&mnVersion);
long nVersion;
if ((result == noErr) && (mnVersion >= QT701))
result = Gestalt(gestaltQuickTime,&nVersion);
if ((result == noErr) && (nVersion >= QT701))
{
{
// we have version 7.01 or later, initialize
// we have version 7.01 or later, initialize
mbInitialized = true;
mbInitialized = true;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment