diff options
author | phintuka <phintuka> | 2007-05-18 15:09:42 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-05-18 15:09:42 +0000 |
commit | 90828963bf37ac0855b9ed449b7bf9ef923e7501 (patch) | |
tree | cbed036cac9fd13cb25952d4a958abd7244f54ec | |
parent | 2ba691e21e96505d21ff3be502bcda03ff61d240 (diff) | |
download | xineliboutput-90828963bf37ac0855b9ed449b7bf9ef923e7501.tar.gz xineliboutput-90828963bf37ac0855b9ed449b7bf9ef923e7501.tar.bz2 |
Removed (unused) decoder priority option
-rw-r--r-- | frontend_local.c | 4 | ||||
-rw-r--r-- | xine_frontend.c | 5 | ||||
-rw-r--r-- | xine_frontend.h | 4 |
3 files changed, 6 insertions, 7 deletions
diff --git a/frontend_local.c b/frontend_local.c index 8db57ffe..f45c9907 100644 --- a/frontend_local.c +++ b/frontend_local.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_local.c,v 1.26 2007-05-17 17:07:13 phintuka Exp $ + * $Id: frontend_local.c,v 1.27 2007-05-18 15:09:42 phintuka Exp $ * */ @@ -365,7 +365,7 @@ void cXinelibLocal::Action(void) if(m_bReconfigRequest) { if(!fe->xine_init(fe, xc.audio_driver, xc.audio_port, xc.video_driver, - xc.pes_buffers, 0, + xc.pes_buffers, xc.post_plugins)) { LOGMSG("cXinelibLocal: Error initializing frontend"); break; diff --git a/xine_frontend.c b/xine_frontend.c index d0a883b6..785f15ef 100644 --- a/xine_frontend.c +++ b/xine_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.c,v 1.36 2007-05-17 22:49:51 phintuka Exp $ + * $Id: xine_frontend.c,v 1.37 2007-05-18 15:09:42 phintuka Exp $ * */ @@ -421,7 +421,7 @@ static void configure_audio_out(fe_t *this, const char *audio_driver, const char static int fe_xine_init(frontend_t *this_gen, const char *audio_driver, const char *audio_port, const char *video_driver, - int pes_buffers, int priority, + int pes_buffers, const char *static_post_plugins) { fe_t *this = (fe_t*)this_gen; @@ -607,7 +607,6 @@ static int fe_xine_init(frontend_t *this_gen, const char *audio_driver, /* misc. config */ - this->priority = priority; this->pes_buffers = pes_buffers; posts = this->postplugins = malloc(sizeof(post_plugins_t)); diff --git a/xine_frontend.h b/xine_frontend.h index 227a742f..45a075f2 100644 --- a/xine_frontend.h +++ b/xine_frontend.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.h,v 1.5 2006-08-23 05:27:11 phintuka Exp $ + * $Id: xine_frontend.h,v 1.6 2007-05-18 15:09:42 phintuka Exp $ * */ @@ -66,7 +66,7 @@ struct frontend_s { const char *audio_driver, const char *audio_port, const char *video_driver, - int pes_buffers, int priority, + int pes_buffers, const char *static_post); int (*xine_open)(frontend_t*, const char *mrl); int (*xine_play)(frontend_t*); |