summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_avi.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-11-18 03:53:23 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-11-18 03:53:23 +0000
commit4c71c84391e9a607394b7f7a23877ba15dffbf67 (patch)
tree53bf6a2b06b97cde43a11cafda54942a3a9bea45 /src/demuxers/demux_avi.c
parent4b36ff207a52ea90bfd9b8c34c97f14963f0960d (diff)
downloadxine-lib-4c71c84391e9a607394b7f7a23877ba15dffbf67.tar.gz
xine-lib-4c71c84391e9a607394b7f7a23877ba15dffbf67.tar.bz2
new configfile interface, code cleanup, xprintf is gone
CVS patchset: 1064 CVS date: 2001/11/18 03:53:23
Diffstat (limited to 'src/demuxers/demux_avi.c')
-rw-r--r--src/demuxers/demux_avi.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c
index 3d8dc7c0f..20d498857 100644
--- a/src/demuxers/demux_avi.c
+++ b/src/demuxers/demux_avi.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: demux_avi.c,v 1.52 2001/11/17 14:26:37 f1rmb Exp $
+ * $Id: demux_avi.c,v 1.53 2001/11/18 03:53:23 guenter Exp $
*
* demultiplexer for avi streams
*
@@ -48,8 +48,6 @@
/* The following variable indicates the kind of error */
-static uint32_t xine_debug;
-
typedef struct
{
long pos;
@@ -720,7 +718,6 @@ static int demux_avi_next (demux_avi_t *this) {
if (!this->no_audio && (audio_pts < video_pts)) {
/* read audio */
- xprintf (VERBOSE|DEMUX|VAVI, "demux_avi: audio \n");
buf->PTS = audio_pts;
buf->SCR = audio_pts;
@@ -747,7 +744,6 @@ static int demux_avi_next (demux_avi_t *this) {
} else {
/* read video */
- xprintf (VERBOSE|DEMUX|VAVI, "demux_avi: video \n");
buf->PTS = video_pts;
buf->SCR = video_pts;
@@ -771,7 +767,6 @@ static int demux_avi_next (demux_avi_t *this) {
this->video_fifo->put (this->video_fifo, buf);
}
- xprintf (VERBOSE|DEMUX|VAVI, "size : %d\n",buf->size);
return (buf->size>0);
}
@@ -1045,8 +1040,6 @@ static int demux_avi_open(demux_plugin_t *this_gen,
mrl = input->get_mrl (input);
ending = strrchr(mrl, '.');
- xprintf(VERBOSE|DEMUX, "demux_avi_can_handle: ending %s of %s\n",
- ending, mrl);
if(ending) {
if(!strcasecmp(ending, ".avi")) {
@@ -1115,7 +1108,6 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
this = xine_xmalloc (sizeof (demux_avi_t));
config = xine->config;
- xine_debug = config->lookup_int (config, "xine_debug", 0);
this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_avi_open;