diff options
Diffstat (limited to 'src/post')
-rw-r--r-- | src/post/audio/stretch.c | 4 | ||||
-rw-r--r-- | src/post/audio/upmix.c | 4 | ||||
-rw-r--r-- | src/post/audio/upmix_mono.c | 4 | ||||
-rw-r--r-- | src/post/deinterlace/xine_plugin.c | 4 | ||||
-rw-r--r-- | src/post/goom/xine_goom.c | 4 | ||||
-rw-r--r-- | src/post/mosaico/mosaico.c | 4 | ||||
-rw-r--r-- | src/post/mosaico/switch.c | 4 | ||||
-rw-r--r-- | src/post/planar/boxblur.c | 4 | ||||
-rw-r--r-- | src/post/planar/denoise3d.c | 4 | ||||
-rw-r--r-- | src/post/planar/eq.c | 4 | ||||
-rw-r--r-- | src/post/planar/expand.c | 2 | ||||
-rwxr-xr-x | src/post/planar/pp.c | 4 | ||||
-rw-r--r-- | src/post/planar/unsharp.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fftgraph.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fftscope.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fooviz.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/oscope.c | 4 |
17 files changed, 33 insertions, 33 deletions
diff --git a/src/post/audio/stretch.c b/src/post/audio/stretch.c index f5b7fd4de..a1e921e03 100644 --- a/src/post/audio/stretch.c +++ b/src/post/audio/stretch.c @@ -19,7 +19,7 @@ * * Time stretch by a given factor, optionally preserving pitch * - * $Id: stretch.c,v 1.7 2005/07/16 17:00:50 miguelfreitas Exp $ + * $Id: stretch.c,v 1.8 2006/01/27 07:46:12 tmattern Exp $ * */ @@ -647,7 +647,7 @@ static post_plugin_t *stretch_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); this->post.xine_post.audio_input[0] = &port->new_port; diff --git a/src/post/audio/upmix.c b/src/post/audio/upmix.c index 7910479aa..76c9afe58 100644 --- a/src/post/audio/upmix.c +++ b/src/post/audio/upmix.c @@ -23,7 +23,7 @@ * It simply creates output channels to match the speaker arrangement. * E.g. Converts Stereo into Surround 5.1 * - * $Id: upmix.c,v 1.16 2004/07/27 17:59:58 mroi Exp $ + * $Id: upmix.c,v 1.17 2006/01/27 07:46:12 tmattern Exp $ * */ @@ -408,7 +408,7 @@ static post_plugin_t *upmix_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); this->post.xine_post.audio_input[0] = &port->new_port; diff --git a/src/post/audio/upmix_mono.c b/src/post/audio/upmix_mono.c index 62b40e18c..ddb52b018 100644 --- a/src/post/audio/upmix_mono.c +++ b/src/post/audio/upmix_mono.c @@ -22,7 +22,7 @@ * This is an up-mix audio filter post plugin. * It simply converts Mono into Stereo. * - * $Id: upmix_mono.c,v 1.4 2005/12/12 15:44:02 valtri Exp $ + * $Id: upmix_mono.c,v 1.5 2006/01/27 07:46:12 tmattern Exp $ * */ @@ -324,7 +324,7 @@ static post_plugin_t *upmix_mono_open_plugin(post_class_t *class_gen, int inputs input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); this->post.xine_post.audio_input[0] = &port->new_port; this->post.dispose = upmix_mono_dispose; diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c index 67de0a06c..425ceefe5 100644 --- a/src/post/deinterlace/xine_plugin.c +++ b/src/post/deinterlace/xine_plugin.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_plugin.c,v 1.47 2006/01/26 12:40:51 miguelfreitas Exp $ + * $Id: xine_plugin.c,v 1.48 2006/01/27 07:46:12 tmattern Exp $ * * advanced video deinterlacer plugin * Jun/2003 by Miguel Freitas @@ -412,7 +412,7 @@ static post_plugin_t *deinterlace_open_plugin(post_class_t *class_gen, int input input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); input->xine_in.name = "video"; output->xine_out.name = "deinterlaced video"; diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index e4e091b1e..887283e26 100644 --- a/src/post/goom/xine_goom.c +++ b/src/post/goom/xine_goom.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_goom.c,v 1.58 2005/07/19 18:10:31 miguelfreitas Exp $ + * $Id: xine_goom.c,v 1.59 2006/01/27 07:46:13 tmattern Exp $ * * GOOM post plugin. * @@ -297,7 +297,7 @@ static post_plugin_t *goom_open_plugin(post_class_t *class_gen, int inputs, outputv->xine_out.data = (xine_video_port_t **)&this->vo_port; outputv->xine_out.rewire = goom_rewire_video; outputv->post = &this->post; - xine_list_append_content(this->post.output, outputv); + xine_list_push_back(this->post.output, outputv); this->post.xine_post.audio_input[0] = &port->new_port; diff --git a/src/post/mosaico/mosaico.c b/src/post/mosaico/mosaico.c index 67b9e3e5d..bcb63de5d 100644 --- a/src/post/mosaico/mosaico.c +++ b/src/post/mosaico/mosaico.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: mosaico.c,v 1.24 2004/05/29 14:45:26 mroi Exp $ + * $Id: mosaico.c,v 1.25 2006/01/27 07:46:13 tmattern Exp $ */ /* @@ -197,7 +197,7 @@ static post_plugin_t *mosaico_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); this->post.dispose = mosaico_dispose; diff --git a/src/post/mosaico/switch.c b/src/post/mosaico/switch.c index e63275d06..58b2bf806 100644 --- a/src/post/mosaico/switch.c +++ b/src/post/mosaico/switch.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: switch.c,v 1.14 2004/05/29 14:45:26 mroi Exp $ + * $Id: switch.c,v 1.15 2006/01/27 07:46:13 tmattern Exp $ */ /* @@ -163,7 +163,7 @@ static post_plugin_t *switch_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); this->post.dispose = switch_dispose; diff --git a/src/post/planar/boxblur.c b/src/post/planar/boxblur.c index 34117915f..1644d2046 100644 --- a/src/post/planar/boxblur.c +++ b/src/post/planar/boxblur.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: boxblur.c,v 1.13 2004/04/17 19:54:32 mroi Exp $ + * $Id: boxblur.c,v 1.14 2006/01/27 07:46:14 tmattern Exp $ * * mplayer's boxblur * Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at> @@ -184,7 +184,7 @@ static post_plugin_t *boxblur_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); input->xine_in.name = "video"; output->xine_out.name = "boxblured video"; diff --git a/src/post/planar/denoise3d.c b/src/post/planar/denoise3d.c index 3f69468e8..370ab4e23 100644 --- a/src/post/planar/denoise3d.c +++ b/src/post/planar/denoise3d.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: denoise3d.c,v 1.13 2004/04/17 19:54:32 mroi Exp $ + * $Id: denoise3d.c,v 1.14 2006/01/27 07:46:14 tmattern Exp $ * * mplayer's denoise3d * Copyright (C) 2003 Daniel Moreno <comac@comac.darktech.org> @@ -225,7 +225,7 @@ static post_plugin_t *denoise3d_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); input->xine_in.name = "video"; output->xine_out.name = "denoise3d video"; diff --git a/src/post/planar/eq.c b/src/post/planar/eq.c index e28a71192..7d38c83e8 100644 --- a/src/post/planar/eq.c +++ b/src/post/planar/eq.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: eq.c,v 1.12 2004/04/17 19:54:32 mroi Exp $ + * $Id: eq.c,v 1.13 2006/01/27 07:46:14 tmattern Exp $ * * mplayer's eq (soft video equalizer) * Copyright (C) Richard Felker @@ -282,7 +282,7 @@ static post_plugin_t *eq_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); input->xine_in.name = "video"; output->xine_out.name = "eqd video"; diff --git a/src/post/planar/expand.c b/src/post/planar/expand.c index 5326e055c..a2d89aa22 100644 --- a/src/post/planar/expand.c +++ b/src/post/planar/expand.c @@ -162,7 +162,7 @@ static post_plugin_t *expand_open_plugin(post_class_t *class_gen, int inputs, input_param->name = "parameters"; input_param->type = XINE_POST_DATA_PARAMETERS; input_param->data = &post_api; - xine_list_append_content(this->post.input, input_param); + xine_list_push_back(this->post.input, input_param); input->xine_in.name = "video"; output->xine_out.name = "expanded video"; diff --git a/src/post/planar/pp.c b/src/post/planar/pp.c index a162f3fae..c66e40459 100755 --- a/src/post/planar/pp.c +++ b/src/post/planar/pp.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: pp.c,v 1.8 2005/01/15 17:04:48 mroi Exp $ + * $Id: pp.c,v 1.9 2006/01/27 07:46:14 tmattern Exp $ * * plugin for ffmpeg libpostprocess */ @@ -211,7 +211,7 @@ static post_plugin_t *pp_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); input->xine_in.name = "video"; output->xine_out.name = "pped video"; diff --git a/src/post/planar/unsharp.c b/src/post/planar/unsharp.c index 0e9fc8b08..161104a64 100644 --- a/src/post/planar/unsharp.c +++ b/src/post/planar/unsharp.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: unsharp.c,v 1.17 2005/02/13 13:14:43 valtri Exp $ + * $Id: unsharp.c,v 1.18 2006/01/27 07:46:14 tmattern Exp $ * * mplayer's unsharp * Copyright (C) 2002 Rémi Guyomarch <rguyom@pobox.com> @@ -320,7 +320,7 @@ static post_plugin_t *unsharp_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); input->xine_in.name = "video"; output->xine_out.name = "unsharped video"; diff --git a/src/post/visualizations/fftgraph.c b/src/post/visualizations/fftgraph.c index 7ac5d74ac..f9f8f0d4a 100644 --- a/src/post/visualizations/fftgraph.c +++ b/src/post/visualizations/fftgraph.c @@ -20,7 +20,7 @@ * FftGraph Visualization Post Plugin For xine * by Thibaut Mattern (tmattern@noos.fr) * - * $Id: fftgraph.c,v 1.13 2004/12/13 19:05:01 miguelfreitas Exp $ + * $Id: fftgraph.c,v 1.14 2006/01/27 07:46:14 tmattern Exp $ * */ @@ -438,7 +438,7 @@ static post_plugin_t *fftgraph_open_plugin(post_class_t *class_gen, int inputs, outputv->xine_out.data = (xine_video_port_t **)&this->vo_port; outputv->xine_out.rewire = fftgraph_rewire_video; outputv->post = &this->post; - xine_list_append_content(this->post.output, outputv); + xine_list_push_back(this->post.output, outputv); this->post.xine_post.audio_input[0] = &port->new_port; diff --git a/src/post/visualizations/fftscope.c b/src/post/visualizations/fftscope.c index 02b92bf31..8448f3a65 100644 --- a/src/post/visualizations/fftscope.c +++ b/src/post/visualizations/fftscope.c @@ -22,7 +22,7 @@ * * FFT code by Steve Haehnichen, originally licensed under GPL v1 * - * $Id: fftscope.c,v 1.28 2004/12/13 19:05:13 miguelfreitas Exp $ + * $Id: fftscope.c,v 1.29 2006/01/27 07:46:14 tmattern Exp $ * */ @@ -459,7 +459,7 @@ static post_plugin_t *fftscope_open_plugin(post_class_t *class_gen, int inputs, outputv->xine_out.data = (xine_video_port_t **)&this->vo_port; outputv->xine_out.rewire = fftscope_rewire_video; outputv->post = &this->post; - xine_list_append_content(this->post.output, outputv); + xine_list_push_back(this->post.output, outputv); this->post.xine_post.audio_input[0] = &port->new_port; diff --git a/src/post/visualizations/fooviz.c b/src/post/visualizations/fooviz.c index 08fa83c4f..b2c4361c8 100644 --- a/src/post/visualizations/fooviz.c +++ b/src/post/visualizations/fooviz.c @@ -23,7 +23,7 @@ * process. It simply paints the screen a solid color and rotates through * colors on each iteration. * - * $Id: fooviz.c,v 1.23 2004/05/29 14:45:26 mroi Exp $ + * $Id: fooviz.c,v 1.24 2006/01/27 07:46:14 tmattern Exp $ * */ @@ -270,7 +270,7 @@ static post_plugin_t *fooviz_open_plugin(post_class_t *class_gen, int inputs, outputv->xine_out.data = (xine_video_port_t **)&this->vo_port; outputv->xine_out.rewire = fooviz_rewire_video; outputv->post = &this->post; - xine_list_append_content(this->post.output, outputv); + xine_list_push_back(this->post.output, outputv); this->post.xine_post.audio_input[0] = &port->new_port; diff --git a/src/post/visualizations/oscope.c b/src/post/visualizations/oscope.c index 93041e393..68ae0e054 100644 --- a/src/post/visualizations/oscope.c +++ b/src/post/visualizations/oscope.c @@ -20,7 +20,7 @@ * Basic Oscilloscope Visualization Post Plugin For xine * by Mike Melanson (melanson@pcisys.net) * - * $Id: oscope.c,v 1.19 2004/05/29 14:45:26 mroi Exp $ + * $Id: oscope.c,v 1.20 2006/01/27 07:46:14 tmattern Exp $ * */ @@ -341,7 +341,7 @@ static post_plugin_t *oscope_open_plugin(post_class_t *class_gen, int inputs, outputv->xine_out.data = (xine_video_port_t **)&this->vo_port; outputv->xine_out.rewire = oscope_rewire_video; outputv->post = &this->post; - xine_list_append_content(this->post.output, outputv); + xine_list_push_back(this->post.output, outputv); this->post.xine_post.audio_input[0] = &port->new_port; |