Commit 33889bca authored by Sam Hocevar's avatar Sam Hocevar

* ./mozilla/Makefile: fixed dependencies on .h files.

  * ./plugins/filter/distort.c: fixed a typo in option names.
parent 8877066d
...@@ -29,10 +29,9 @@ uninstall: ...@@ -29,10 +29,9 @@ uninstall:
FORCE: 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 $@ $(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 $@ $(CC) $(CFLAGS) -I../include $(mozilla_CFLAGS) -c $< -o $@
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* distort.c : Misc video effects plugin for vlc * distort.c : Misc video effects plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: distort.c,v 1.17 2002/07/20 18:01:42 sam Exp $ * $Id: distort.c,v 1.18 2002/07/23 20:16:36 sam Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -158,10 +158,10 @@ static int vout_Create( vout_thread_t *p_vout ) ...@@ -158,10 +158,10 @@ static int vout_Create( vout_thread_t *p_vout )
/* No method given in commandline. Look what method was /* No method given in commandline. Look what method was
requested in configuration system */ requested in configuration system */
if( !(psz_method = psz_method_tmp 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'", msg_Err( p_vout, "configuration variable %s empty, using 'wave'",
"distort_mode" ); "distort-mode" );
p_vout->p_sys->i_mode = DISTORT_MODE_WAVE; p_vout->p_sys->i_mode = DISTORT_MODE_WAVE;
} }
else { else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment