Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f90b88ab
Commit
f90b88ab
authored
Feb 25, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup and fix crash when plugin wasn't playing.
parent
e9347d2d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
150 additions
and
153 deletions
+150
-153
projects/mozilla/vlcplugin.cpp
projects/mozilla/vlcplugin.cpp
+1
-0
projects/mozilla/vlcplugin.h
projects/mozilla/vlcplugin.h
+5
-0
projects/mozilla/vlcshell.cpp
projects/mozilla/vlcshell.cpp
+144
-153
No files found.
projects/mozilla/vlcplugin.cpp
View file @
f90b88ab
...
...
@@ -44,6 +44,7 @@ VlcPlugin::VlcPlugin( NPP instance, uint16 mode ) :
i_npmode
(
mode
),
b_stream
(
0
),
b_autoplay
(
1
),
i_control_height
(
45
),
psz_target
(
NULL
),
libvlc_instance
(
NULL
),
libvlc_log
(
NULL
),
...
...
projects/mozilla/vlcplugin.h
View file @
f90b88ab
...
...
@@ -105,6 +105,10 @@ public:
int
b_autoplay
;
char
*
psz_target
;
#if XP_UNIX
/* toolbar */
int
i_control_height
;
#endif
private:
/* VLC reference */
libvlc_instance_t
*
libvlc_instance
;
...
...
@@ -123,6 +127,7 @@ private:
#if XP_UNIX
unsigned
int
i_width
,
i_height
;
Window
npvideo
,
npcontrol
;
#endif
};
...
...
projects/mozilla/vlcshell.cpp
View file @
f90b88ab
This diff is collapsed.
Click to expand it.
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