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
231f2b87
Kaydet (Commit)
231f2b87
authored
Ock 17, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some more loplugin:cstylecast: avmedia
Change-Id: If60734acaa9743cc0cc6b366152bc3085f1f57e8
üst
b5fab0c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
oglframegrabber.cxx
avmedia/source/opengl/oglframegrabber.cxx
+1
-1
SymbolLoader.hxx
avmedia/source/vlc/wrapper/SymbolLoader.hxx
+1
-1
No files found.
avmedia/source/opengl/oglframegrabber.cxx
Dosyayı görüntüle @
231f2b87
...
...
@@ -39,7 +39,7 @@ uno::Reference< css::graphic::XGraphic > SAL_CALL OGLFrameGrabber::grabFrame( do
{
boost
::
scoped_array
<
sal_uInt8
>
pBuffer
(
new
sal_uInt8
[
m_rHandle
.
viewport
.
width
*
m_rHandle
.
viewport
.
height
*
4
]);
glTFHandle
*
pHandle
=
&
m_rHandle
;
int
nRet
=
gltf_renderer_get_bitmap
(
&
pHandle
,
1
,
(
char
*
)
pBuffer
.
get
(
),
GL_BGRA
);
int
nRet
=
gltf_renderer_get_bitmap
(
&
pHandle
,
1
,
reinterpret_cast
<
char
*>
(
pBuffer
.
get
()
),
GL_BGRA
);
if
(
nRet
!=
0
)
{
SAL_WARN
(
"avmedia.opengl"
,
"Error occurred while rendering to bitmap! Error code: "
<<
nRet
);
...
...
avmedia/source/vlc/wrapper/SymbolLoader.hxx
Dosyayı görüntüle @
231f2b87
...
...
@@ -16,7 +16,7 @@
#include <osl/module.h>
#include <rtl/ustring.hxx>
#define SYM_MAP(a) { #a,
(SymbolFunc *)&a
}
#define SYM_MAP(a) { #a,
reinterpret_cast<SymbolFunc *>(&a)
}
namespace
avmedia
{
...
...
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