Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
79a4f01f
Commit
79a4f01f
authored
Oct 29, 2002
by
Eric Petit
Browse files
No more warnings.
parent
6b02ec70
Changes
5
Hide whitespace changes
Inline
Side-by-side
modules/gui/beos/InterfaceWindow.cpp
View file @
79a4f01f
...
...
@@ -2,7 +2,7 @@
* InterfaceWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: InterfaceWindow.cpp,v 1.
5
2002/10/2
8
1
9:42:24
titer Exp $
* $Id: InterfaceWindow.cpp,v 1.
6
2002/10/2
9
1
7:33:11
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -479,10 +479,14 @@ void InterfaceWindow::MessageReceived( BMessage * p_message )
break
;
case
OPEN_PREFERENCES
:
if
(
fPreferencesWindow
->
IsHidden
())
fPreferencesWindow
->
Show
();
else
fPreferencesWindow
->
Activate
();
if
(
fPreferencesWindow
->
Lock
()
)
{
if
(
fPreferencesWindow
->
IsHidden
())
fPreferencesWindow
->
Show
();
else
fPreferencesWindow
->
Activate
();
fPreferencesWindow
->
Unlock
();
}
break
;
default:
...
...
modules/gui/beos/MediaControlView.cpp
View file @
79a4f01f
...
...
@@ -2,7 +2,7 @@
* MediaControlView.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: MediaControlView.cpp,v 1.
5
2002/10/2
8
1
9:42:24
titer Exp $
* $Id: MediaControlView.cpp,v 1.
6
2002/10/2
9
1
7:33:11
titer Exp $
*
* Authors: Tony Castley <tony@castley.net>
* Stephan Aßmus <stippi@yellowbites.com>
...
...
@@ -684,7 +684,7 @@ SeekSlider::Draw(BRect updateRect)
// stripes
float
width
=
floorf
(
StringWidth
(
kDisabledSeekMessage
));
float
textPos
=
r
.
left
+
r
.
Width
()
/
2.0
-
width
/
2.0
;
pattern
stripes
=
{
0xc7
,
0x8f
,
0x1f
,
0x3e
,
0x7c
,
0xf8
,
0xf1
,
0xe3
};
pattern
stripes
=
{
{
0xc7
,
0x8f
,
0x1f
,
0x3e
,
0x7c
,
0xf8
,
0xf1
,
0xe3
}
};
BRect
stripesRect
(
r
);
stripesRect
.
right
=
textPos
-
5.0
;
FillRect
(
stripesRect
,
stripes
);
...
...
modules/gui/beos/TransportButton.cpp
View file @
79a4f01f
...
...
@@ -2,7 +2,7 @@
* TransportButton.cpp
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: TransportButton.cpp,v 1.
2
2002/
09/30
1
8
:3
0:27
titer Exp $
* $Id: TransportButton.cpp,v 1.
3
2002/
10/29
1
7
:3
3:11
titer Exp $
*
* Authors: Tony Castley <tcastley@mail.powerup.com.au>
* Stephan Aßmus <stippi@yellowbites.com>
...
...
@@ -308,7 +308,7 @@ TransportButton::MakeBitmap(uint32 mask)
uint8
*
src
=
(
uint8
*
)
BitsForMask
(
mask
);
if
(
src
&&
result
&&
result
->
IsValid
())
{
int32
width
=
r
.
IntegerWidth
()
+
1
;
//
int32 width = r.IntegerWidth() + 1;
int32
height
=
r
.
IntegerHeight
()
+
1
;
int32
bpr
=
result
->
BytesPerRow
();
uint8
*
dst
=
(
uint8
*
)
result
->
Bits
();
...
...
modules/gui/beos/VideoOutput.cpp
View file @
79a4f01f
...
...
@@ -2,7 +2,7 @@
* vout_beos.cpp: beos video output display method
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: VideoOutput.cpp,v 1.
3
2002/10/2
8
1
6:55:05
titer Exp $
* $Id: VideoOutput.cpp,v 1.
4
2002/10/2
9
1
7:33:11
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -260,7 +260,7 @@ VideoWindow::MessageReceived( BMessage *p_message )
BBitmap
*
temp
=
new
BBitmap
(
current
->
Bounds
(),
current
->
ColorSpace
()
);
if
(
temp
&&
temp
->
IsValid
()
)
{
int32
height
=
current
->
Bounds
().
Height
();
int32
height
=
(
int32
)
current
->
Bounds
().
Height
();
uint8
*
dst
=
(
uint8
*
)
temp
->
Bits
();
uint8
*
src
=
(
uint8
*
)
current
->
Bits
();
int32
dstBpr
=
temp
->
BytesPerRow
();
...
...
@@ -1109,7 +1109,7 @@ VLCView::Draw(BRect updateRect)
*****************************************************************************/
static
int
Init
(
vout_thread_t
*
);
static
void
End
(
vout_thread_t
*
);
static
int
Manage
(
vout_thread_t
*
);
//
static int Manage ( vout_thread_t * );
static
void
Display
(
vout_thread_t
*
,
picture_t
*
);
static
int
BeosOpenDisplay
(
vout_thread_t
*
p_vout
);
...
...
modules/gui/beos/VlcWrapper.cpp
View file @
79a4f01f
...
...
@@ -2,7 +2,7 @@
* intf_vlc_wrapper.h: BeOS plugin for vlc (derived from MacOS X port )
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: VlcWrapper.cpp,v 1.
7
2002/10/2
8
1
9:42:24
titer Exp $
* $Id: VlcWrapper.cpp,v 1.
8
2002/10/2
9
1
7:33:11
titer Exp $
*
* Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -887,4 +887,7 @@ void Intf_VLCWrapper::toggleSubtitle(int i_subtitle)
void
Intf_VLCWrapper
::
setupMenus
(){}
int
Intf_VLCWrapper
::
inputGetStatus
()
{}
int
Intf_VLCWrapper
::
inputGetStatus
()
{
return
0
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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