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
619b848b
Kaydet (Commit)
619b848b
authored
Agu 05, 2013
tarafından
Minh Ngo
Kaydeden (comit)
Michael Meeks
Agu 21, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Upd the instance API
Change-Id: Iba79d423336f9914ded8a121ba8f99f52c16466f
üst
5ae5a11f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
vlcplayer.cxx
avmedia/source/vlc/vlcplayer.cxx
+1
-1
Instance.cxx
avmedia/source/vlc/wrapper/Instance.cxx
+2
-2
Instance.hxx
avmedia/source/vlc/wrapper/Instance.hxx
+1
-1
No files found.
avmedia/source/vlc/vlcplayer.cxx
Dosyayı görüntüle @
619b848b
...
@@ -36,7 +36,7 @@ namespace
...
@@ -36,7 +36,7 @@ namespace
VLCPlayer
::
VLCPlayer
(
const
rtl
::
OUString
&
url
)
VLCPlayer
::
VLCPlayer
(
const
rtl
::
OUString
&
url
)
:
VLC_Base
(
m_aMutex
)
:
VLC_Base
(
m_aMutex
)
,
mInstance
(
sizeof
(
VLC_ARGS
)
/
sizeof
(
VLC_ARGS
[
0
]
),
VLC_ARGS
)
,
mInstance
(
VLC_ARGS
)
,
mMedia
(
InitMedia
(
url
,
mInstance
),
libvlc_media_release
)
,
mMedia
(
InitMedia
(
url
,
mInstance
),
libvlc_media_release
)
,
mPlayer
(
libvlc_media_player_new_from_media
(
mMedia
.
get
()
),
libvlc_media_player_release
)
,
mPlayer
(
libvlc_media_player_new_from_media
(
mMedia
.
get
()
),
libvlc_media_player_release
)
,
mUrl
(
url
)
,
mUrl
(
url
)
...
...
avmedia/source/vlc/wrapper/Instance.cxx
Dosyayı görüntüle @
619b848b
...
@@ -17,11 +17,11 @@ namespace VLC
...
@@ -17,11 +17,11 @@ namespace VLC
};
};
}
}
Instance
::
Instance
(
int
argc
,
const
char
*
const
*
argv
)
Instance
::
Instance
(
const
char
*
const
argv
[]
)
{
{
InitApiMap
(
VLC_INSTANCE_API
);
InitApiMap
(
VLC_INSTANCE_API
);
mInstance
=
libvlc_new
(
argc
,
argv
);
mInstance
=
libvlc_new
(
sizeof
(
argv
)
/
sizeof
(
argv
[
0
]
)
,
argv
);
}
}
Instance
::~
Instance
()
Instance
::~
Instance
()
...
...
avmedia/source/vlc/wrapper/Instance.hxx
Dosyayı görüntüle @
619b848b
...
@@ -26,7 +26,7 @@ namespace VLC
...
@@ -26,7 +26,7 @@ namespace VLC
class
Instance
class
Instance
{
{
public
:
public
:
Instance
(
int
argc
,
const
char
*
const
*
argv
);
Instance
(
const
char
*
const
argv
[]
);
virtual
~
Instance
();
virtual
~
Instance
();
inline
operator
libvlc_instance_t
*
()
inline
operator
libvlc_instance_t
*
()
...
...
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