diff options
Diffstat (limited to 'src/demuxers/demux_mpeg.c')
-rw-r--r-- | src/demuxers/demux_mpeg.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c index f42bc2b4e..72ff2ca92 100644 --- a/src/demuxers/demux_mpeg.c +++ b/src/demuxers/demux_mpeg.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_mpeg.c,v 1.9 2001/05/07 03:40:35 f1rmb Exp $ + * $Id: demux_mpeg.c,v 1.10 2001/05/24 15:31:30 guenter Exp $ * * demultiplexer for mpeg 1/2 program streams * reads streams of variable blocksizes @@ -495,16 +495,12 @@ static void demux_mpeg_start (demux_plugin_t *this_gen, this->status = DEMUX_OK; - printf ("demux_mpeg: seek...\n"); - if ((this->input->get_capabilities (this->input) & INPUT_CAP_SEEKABLE) != 0 ) { xprintf (VERBOSE|DEMUX, "=>seek to %Ld\n",pos); this->input->seek (this->input, pos+4, SEEK_SET); } else read_bytes(this, 4); - printf ("demux_mpeg: create start packages...\n"); - buf = this->video_fifo->buffer_pool_alloc (this->video_fifo); buf->type = BUF_CONTROL_START; this->video_fifo->put (this->video_fifo, buf); @@ -512,8 +508,6 @@ static void demux_mpeg_start (demux_plugin_t *this_gen, buf->type = BUF_CONTROL_START; this->audio_fifo->put (this->audio_fifo, buf); - printf ("demux_mpeg: create thread...\n"); - pthread_create (&this->thread, NULL, demux_mpeg_loop, this) ; } |