# HG changeset patch # User diego # Date 1269160449 0 # Node ID f405a747a35a5ff1836d852747f260316d4838c3 # Parent 76a13038105ecc07499d04d2f47d09109ab84b82 Rename SetCodecPath() --> set_codec_path(). This keeps the naming of all path-related functions consistent. diff -r 76a13038105e -r f405a747a35a mencoder.c --- a/mencoder.c Sat Mar 20 23:38:27 2010 +0000 +++ b/mencoder.c Sun Mar 21 08:34:09 2010 +0000 @@ -667,7 +667,7 @@ #endif if (codec_path) - SetCodecPath(codec_path); + set_codec_path(codec_path); // check font #ifdef CONFIG_FREETYPE diff -r 76a13038105e -r f405a747a35a mplayer.c --- a/mplayer.c Sat Mar 20 23:38:27 2010 +0000 +++ b/mplayer.c Sun Mar 21 08:34:09 2010 +0000 @@ -2702,7 +2702,7 @@ #endif if (codec_path) - SetCodecPath(codec_path); + set_codec_path(codec_path); #ifndef CONFIG_GUI if(use_gui){ diff -r 76a13038105e -r f405a747a35a path.c --- a/path.c Sat Mar 20 23:38:27 2010 +0000 +++ b/path.c Sun Mar 21 08:34:09 2010 +0000 @@ -180,7 +180,7 @@ static int needs_free = 0; -void SetCodecPath(const char *path) +void set_codec_path(const char *path) { if (needs_free) free(def_path); diff -r 76a13038105e -r f405a747a35a path.h --- a/path.h Sat Mar 20 23:38:27 2010 +0000 +++ b/path.h Sun Mar 21 08:34:09 2010 +0000 @@ -25,6 +25,6 @@ char *get_path(const char *filename); void set_path_env(void); -void SetCodecPath(const char *path); +void set_codec_path(const char *path); #endif /* MPLAYER_PATH_H */