diff options
author | phintuka <phintuka> | 2006-12-17 12:15:49 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-12-17 12:15:49 +0000 |
commit | d198d0b0cc95adf0afdaf31a218dc0718bfe40c1 (patch) | |
tree | 5d5a06f2f4b0631c2e0c70612f2789cb39a8651f | |
parent | 35051d7d3872954831b17262c74be963e56a5caf (diff) | |
download | xineliboutput-d198d0b0cc95adf0afdaf31a218dc0718bfe40c1.tar.gz xineliboutput-d198d0b0cc95adf0afdaf31a218dc0718bfe40c1.tar.bz2 |
Fixed a bug that caused audio plugins re-loaded every time when enabled
-rw-r--r-- | xine/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xine/post.c b/xine/post.c index dcbcb35d..90feaf42 100644 --- a/xine/post.c +++ b/xine/post.c @@ -772,7 +772,7 @@ int applugin_enable_post(post_plugins_t *fe, const char *initstr, const char *args = _pp_args(initstr); char *name = _pp_name(initstr); - int result = _vpplugin_enable_post(fe, name, args, found); + int result = _applugin_enable_post(fe, name, args, found); LOGDBG(" * enable post %s --> %s, %s", name, *found ? "found" : "not found", |