Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
33889bca
Commit
33889bca
authored
Jul 23, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./mozilla/Makefile: fixed dependencies on .h files.
* ./plugins/filter/distort.c: fixed a typo in option names.
parent
8877066d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
mozilla/Makefile
mozilla/Makefile
+2
-3
plugins/filter/distort.c
plugins/filter/distort.c
+3
-3
No files found.
mozilla/Makefile
View file @
33889bca
...
...
@@ -29,10 +29,9 @@ uninstall:
FORCE
:
$(PLUGIN_OBJ)
:
Makefile $(C_OBJ)
$(PLUGIN_OBJ)
:
Makefile
../lib/libvlc.a $(BUILTIN_OBJ:%=../%)
$(C_OBJ)
$(CC)
-shared
$(LDFLAGS)
-L
../lib
$(mozilla_LDFLAGS)
$(C_OBJ)
-lvlc
$
(
BUILTIN_OBJ:%
=
../%
)
$(builtins_LDFLAGS)
-o
$@
chmod
a-x
$@
$(C_OBJ)
:
%.o: %.c
$(C_OBJ)
:
%.o: %.c
vlcplugin.h
$(CC)
$(CFLAGS)
-I
../include
$(mozilla_CFLAGS)
-c
$<
-o
$@
plugins/filter/distort.c
View file @
33889bca
...
...
@@ -2,7 +2,7 @@
* distort.c : Misc video effects plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: distort.c,v 1.1
7 2002/07/20 18:01:42
sam Exp $
* $Id: distort.c,v 1.1
8 2002/07/23 20:16:36
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -158,10 +158,10 @@ static int vout_Create( vout_thread_t *p_vout )
/* No method given in commandline. Look what method was
requested in configuration system */
if
(
!
(
psz_method
=
psz_method_tmp
=
config_GetPsz
(
p_vout
,
"distort
_
mode"
))
)
=
config_GetPsz
(
p_vout
,
"distort
-
mode"
))
)
{
msg_Err
(
p_vout
,
"configuration variable %s empty, using 'wave'"
,
"distort
_
mode"
);
"distort
-
mode"
);
p_vout
->
p_sys
->
i_mode
=
DISTORT_MODE_WAVE
;
}
else
{
...
...
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