diff options
Diffstat (limited to 'src/demuxers/demux_cda.c')
-rw-r--r-- | src/demuxers/demux_cda.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/demux_cda.c b/src/demuxers/demux_cda.c index a585a988b..d5fd46b0f 100644 --- a/src/demuxers/demux_cda.c +++ b/src/demuxers/demux_cda.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_cda.c,v 1.6 2002/01/14 21:42:59 f1rmb Exp $ + * $Id: demux_cda.c,v 1.7 2002/02/09 07:13:22 guenter Exp $ */ #ifdef HAVE_CONFIG_H @@ -93,11 +93,11 @@ static int demux_cda_next (demux_cda_t *this) { pos = this->input->get_current_pos(this->input); len = this->input->get_length(this->input); - buf->PTS = 0; - buf->SCR = 0; + buf->pts = 0; + buf->scr = 0; buf->input_pos = pos; buf->input_time = buf->input_pos / this->blocksize; - buf->type = BUF_VIDEO_FILL; /* Fake */ + buf->type = BUF_CONTROL_NOP; /* Fake */ this->video_fifo->put(this->video_fifo, buf); |