Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
4e250dc9
Commit
4e250dc9
authored
Mar 06, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mozilla: cosmetics
parent
2e7cec45
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
18 deletions
+12
-18
projects/mozilla/control/npolibvlc.cpp
projects/mozilla/control/npolibvlc.cpp
+3
-5
projects/mozilla/vlcplugin.cpp
projects/mozilla/vlcplugin.cpp
+3
-5
projects/mozilla/vlcplugin.h
projects/mozilla/vlcplugin.h
+3
-5
projects/mozilla/vlcshell.cpp
projects/mozilla/vlcshell.cpp
+3
-3
No files found.
projects/mozilla/control/npolibvlc.cpp
View file @
4e250dc9
/*****************************************************************************
* npolibvlc.cpp: official Javascript APIs
*****************************************************************************
* Copyright (C) 2002-200
6
the VideoLAN team
* Copyright (C) 2002-200
9
the VideoLAN team
*
* Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
* Jan Paul Dinger <jpd@m2x.nl>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -914,12 +915,10 @@ LibvlcMessagesNPObject::invoke(int index, const NPVariant *args,
return
INVOKERESULT_GENERIC_ERROR
;
}
/*
** implementation of libvlc message object
*/
LibvlcLogNPObject
::~
LibvlcLogNPObject
()
{
if
(
isValid
()
)
...
...
@@ -1133,7 +1132,6 @@ LibvlcPlaylistItemsNPObject::invoke(int index, const NPVariant *args,
** implementation of libvlc playlist object
*/
LibvlcPlaylistNPObject
::~
LibvlcPlaylistNPObject
()
{
if
(
isValid
()
)
...
...
@@ -1311,7 +1309,7 @@ LibvlcPlaylistNPObject::invoke(int index, const NPVariant *args,
}
else
{
free
(
url
);
free
(
url
);
free
(
name
);
return
INVOKERESULT_INVALID_VALUE
;
}
...
...
projects/mozilla/vlcplugin.cpp
View file @
4e250dc9
...
...
@@ -474,7 +474,6 @@ int VlcPlugin::player_has_vout( libvlc_exception_t *ex )
return
r
;
}
/*****************************************************************************
* VlcPlugin methods
*****************************************************************************/
...
...
@@ -863,8 +862,6 @@ void VlcPlugin::redrawToolbar()
dst_y
-
(
p_timeline
->
height
>>
1
),
(
window
.
width
-
(
dst_x
+
BTN_SPACE
)),
p_timeline
->
height
);
/* get movie position in % */
if
(
playlist_isplaying
(
&
ex
)
)
{
...
...
@@ -884,15 +881,16 @@ void VlcPlugin::redrawToolbar()
vlc_toolbar_clicked_t
VlcPlugin
::
getToolbarButtonClicked
(
int
i_xpos
,
int
i_ypos
)
{
unsigned
int
i_dest
=
BTN_SPACE
;
//(i_tb_height >> 1);
unsigned
int
i_dest
=
BTN_SPACE
;
int
is_playing
=
0
;
bool
b_mute
=
false
;
libvlc_exception_t
ex
;
#ifndef NDEBUG
fprintf
(
stderr
,
"ToolbarButtonClicked:: "
"trying to match (%d,%d) (%d,%d)
\n
"
,
i_xpos
,
i_ypos
,
i_tb_height
,
i_tb_width
);
#endif
if
(
i_ypos
>=
i_tb_width
)
return
clicked_Unknown
;
...
...
projects/mozilla/vlcplugin.h
View file @
4e250dc9
/*****************************************************************************
* vlcplugin.h: a VLC plugin for Mozilla
*****************************************************************************
* Copyright (C) 2002-200
8
the VideoLAN team
* Copyright (C) 2002-200
9
the VideoLAN team
* $Id$
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Damien Fouilleul <damienf@videolan.org>
* Jean-Paul Saman <jpsaman@videolan.org>
*
Jean-Paul Saman <jpsaman@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -92,7 +92,7 @@ public:
{
if
(
!
libvlc_media_player
)
{
libvlc_exception_raise
(
ex
,
"n
ull
mediaplayer"
);
libvlc_exception_raise
(
ex
,
"n
o
mediaplayer"
);
}
return
libvlc_media_player
;
}
...
...
@@ -270,6 +270,4 @@ private:
/* XSPF */
\
"application/xspf+xml:xspf:Playlist xspf;"
#endif
projects/mozilla/vlcshell.cpp
View file @
4e250dc9
/*****************************************************************************
* vlcshell.cpp: a VLC plugin for Mozilla
*****************************************************************************
* Copyright (C) 2002-200
8
the VideoLAN team
* Copyright (C) 2002-200
9
the VideoLAN team
* $Id$
*
* Authors: Samuel Hocevar <sam@zoy.org>
...
...
@@ -410,7 +410,8 @@ NPError NPP_SetWindow( NPP instance, NPWindow* window )
/* remember new window */
p_plugin
->
setWindow
(
*
window
);
}
else
if
(
curwin
.
window
)
{
else
if
(
curwin
.
window
)
{
/* change/set parent */
libvlc_video_set_parent
(
p_vlc
,
0
,
NULL
);
curwin
.
window
=
NULL
;
...
...
@@ -655,7 +656,6 @@ void NPP_URLNotify( NPP instance, const char* url,
\*********************************************/
}
void
NPP_Print
(
NPP
instance
,
NPPrint
*
printInfo
)
{
if
(
printInfo
==
NULL
)
...
...
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