summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libvfill/Makefile.am26
-rw-r--r--src/libvfill/xine_decoder.c149
2 files changed, 0 insertions, 175 deletions
diff --git a/src/libvfill/Makefile.am b/src/libvfill/Makefile.am
deleted file mode 100644
index aeebe3150..000000000
--- a/src/libvfill/Makefile.am
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# the videofill plugin
-#
-
-libdir = $(XINE_PLUGINDIR)
-
-lib_LTLIBRARIES = xineplug_decode_vfill.la
-
-xineplug_decode_vfill_la_SOURCES = xine_decoder.c
-xineplug_decode_vfill_la_LDFLAGS = -avoid-version -module
-
-# noinst_HEADERS =
-
-debug:
- @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"
-
-install-debug: debug
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-mostlyclean-generic:
- -rm -f *~ \#* .*~ .\#*
-
-maintainer-clean-generic:
- -@echo "This command is intended for maintainers to use;"
- -@echo "it deletes files that may require special tools to rebuild."
- -rm -f Makefile.in
diff --git a/src/libvfill/xine_decoder.c b/src/libvfill/xine_decoder.c
deleted file mode 100644
index 237576e11..000000000
--- a/src/libvfill/xine_decoder.c
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * Copyright (C) 2000-2001 the xine project
- *
- * This file is part of xine, a free video player.
- *
- * xine is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * xine is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * A decoder to fill the video buffer with similar frames
- */
-
-
-#include <stdlib.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <string.h>
-
-#include "video_out.h"
-#include "buffer.h"
-#include "xine_internal.h"
-#include "xineutils.h"
-
-/* The videofill decoder's job in life is to copy the last frame displayed into
- * the current display queue, incrementing the PTS value accordingly. It probably
- * needs some work */
-
-typedef struct videofill_decoder_s {
- video_decoder_t video_decoder;
-
- vo_instance_t *video_out;
-} videofill_decoder_t;
-
-static int videofill_can_handle (video_decoder_t *this_gen, int buf_type) {
- return ((buf_type & 0xFFFF0000) == BUF_VIDEO_FILL) ;
-}
-
-static void videofill_init (video_decoder_t *this_gen, vo_instance_t *video_out) {
-
- videofill_decoder_t *this = (videofill_decoder_t *) this_gen;
-
- this->video_out = video_out;
- this->video_out->open (this->video_out);
-}
-
-static void videofill_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
-
- videofill_decoder_t *this = (videofill_decoder_t *) this_gen;
- vo_frame_t *img, *last_img;
-
- last_img = this->video_out->get_last_frame (this->video_out);
-
- /* printf ("videofill: "); */
-
- if (last_img) {
- int image_size;
-
- /* printf (" duplicate "); */
-
- img = this->video_out->get_frame (this->video_out,
- last_img->width,
- last_img->height,
- last_img->ratio,
- last_img->format,
- last_img->duration,
- VO_BOTH_FIELDS);
-
- image_size = last_img->width * last_img->height;
-
- xine_fast_memcpy(img->base[0], last_img->base[0], image_size);
- xine_fast_memcpy(img->base[1], last_img->base[1], image_size >> 2);
- xine_fast_memcpy(img->base[2], last_img->base[2], image_size >> 2);
-
- img->PTS = 0;
- img->bad_frame = 0;
-
- if (img->copy) {
- int height = last_img->height;
- int stride = last_img->width;
- uint8_t* src[3];
-
- src[0] = img->base[0];
- src[1] = img->base[1];
- src[2] = img->base[2];
- while ((height -= 16) >= 0) {
- img->copy(img, src);
- src[0] += 16 * stride;
- src[1] += 4 * stride;
- src[2] += 4 * stride;
- }
- }
- img->draw(img);
- img->free(img);
- }
- /* printf ("\n"); */
-}
-
-static void videofill_flush (video_decoder_t *this_gen) {
-}
-
-static void videofill_close (video_decoder_t *this_gen) {
-
- videofill_decoder_t *this = (videofill_decoder_t *) this_gen;
-
- this->video_out->close(this->video_out);
-}
-
-static char *videofill_get_id(void) {
- return "videofill";
-}
-
-video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
-
- videofill_decoder_t *this ;
-
- if (iface_version != 5) {
- printf( "videofill: plugin doesn't support plugin API version %d.\n"
- "videofill: this means there's a version mismatch between xine and this "
- "videofill: decoder plugin.\nInstalling current plugins should help.\n",
- iface_version);
- return NULL;
- }
-
- this = (videofill_decoder_t *) malloc (sizeof (videofill_decoder_t));
-
- this->video_decoder.interface_version = iface_version;
- this->video_decoder.can_handle = videofill_can_handle;
- this->video_decoder.init = videofill_init;
- this->video_decoder.decode_data = videofill_decode_data;
- this->video_decoder.flush = videofill_flush;
- this->video_decoder.close = videofill_close;
- this->video_decoder.get_identifier = videofill_get_id;
- this->video_decoder.priority = 2;
-
- return (video_decoder_t *) this;
-}
-