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
42bfd486
Kaydet (Commit)
42bfd486
authored
Nis 07, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avmedia: sal_Bool->bool
Change-Id: I4b72cdce6c82b79c6f475d690af03a22bdb32bb1
üst
c2161066
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
gstplayer.cxx
avmedia/source/gstreamer/gstplayer.cxx
+2
-2
gstplayer.hxx
avmedia/source/gstreamer/gstplayer.hxx
+5
-5
gstwindow.cxx
avmedia/source/gstreamer/gstwindow.cxx
+1
-1
oglwindow.cxx
avmedia/source/opengl/oglwindow.cxx
+1
-1
No files found.
avmedia/source/gstreamer/gstplayer.cxx
Dosyayı görüntüle @
42bfd486
...
...
@@ -64,7 +64,7 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
GstPlayer_BASE
(
m_aMutex
),
mxMgr
(
rxMgr
),
mpPlaybin
(
NULL
),
mbFakeVideo
(
sal_F
alse
),
mbFakeVideo
(
f
alse
),
mnUnmutedVolume
(
0
),
mbPlayPending
(
false
),
mbMuted
(
false
),
...
...
@@ -547,7 +547,7 @@ void SAL_CALL Player::setMute( sal_Bool bSet )
DBG
(
"set mute: %d muted: %d unmuted volume: %lf"
,
bSet
,
mbMuted
,
mnUnmutedVolume
);
// change the volume to 0 or the unmuted volume
if
(
mpPlaybin
&&
mbMuted
!=
bSet
)
if
(
mpPlaybin
&&
(
mbMuted
?
1
:
0
)
!=
bSet
)
{
double
nVolume
=
mnUnmutedVolume
;
if
(
bSet
)
...
...
avmedia/source/gstreamer/gstplayer.hxx
Dosyayı görüntüle @
42bfd486
...
...
@@ -84,13 +84,13 @@ protected:
// Add elements and pipeline here
GstElement
*
mpPlaybin
;
// the playbin is also a pipeline
sal_B
ool
mbFakeVideo
;
b
ool
mbFakeVideo
;
gdouble
mnUnmutedVolume
;
sal_B
ool
mbPlayPending
;
sal_B
ool
mbMuted
;
sal_B
ool
mbLooping
;
sal_B
ool
mbInitialized
;
b
ool
mbPlayPending
;
b
ool
mbMuted
;
b
ool
mbLooping
;
b
ool
mbInitialized
;
long
mnWindowID
;
GstVideoOverlay
*
mpXOverlay
;
...
...
avmedia/source/gstreamer/gstwindow.cxx
Dosyayı görüntüle @
42bfd486
...
...
@@ -77,7 +77,7 @@ void SAL_CALL Window::update( )
sal_Bool
SAL_CALL
Window
::
setZoomLevel
(
media
::
ZoomLevel
eZoomLevel
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
sal_B
ool
bRet
=
false
;
b
ool
bRet
=
false
;
if
(
media
::
ZoomLevel_NOT_AVAILABLE
!=
meZoomLevel
&&
media
::
ZoomLevel_NOT_AVAILABLE
!=
eZoomLevel
)
...
...
avmedia/source/opengl/oglwindow.cxx
Dosyayı görüntüle @
42bfd486
...
...
@@ -31,7 +31,7 @@ void SAL_CALL OGLWindow::update() throw (css::uno::RuntimeException, std::except
sal_Bool
SAL_CALL
OGLWindow
::
setZoomLevel
(
css
::
media
::
ZoomLevel
eZoomLevel
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
sal_B
ool
bRet
=
false
;
b
ool
bRet
=
false
;
if
(
media
::
ZoomLevel_NOT_AVAILABLE
!=
meZoomLevel
&&
media
::
ZoomLevel_NOT_AVAILABLE
!=
eZoomLevel
)
...
...
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