diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-12-07 01:55:36 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-12-07 01:55:36 +0000 |
commit | 93d93af6c24fa2a0eb0e5c05181582c68b2c8e9a (patch) | |
tree | 431de9c2fdf63bf38bfa27d55ca59f4d9ae4fef2 | |
parent | a06b20bf079dc4586dde3f26f261161e40b6ccc6 (diff) | |
download | xine-lib-93d93af6c24fa2a0eb0e5c05181582c68b2c8e9a.tar.gz xine-lib-93d93af6c24fa2a0eb0e5c05181582c68b2c8e9a.tar.bz2 |
hush, set default framerate a little lower
CVS patchset: 3456
CVS date: 2002/12/07 01:55:36
-rw-r--r-- | src/libreal/audio_decoder.c | 4 | ||||
-rw-r--r-- | src/libreal/xine_decoder.c | 7 |
2 files changed, 3 insertions, 8 deletions
diff --git a/src/libreal/audio_decoder.c b/src/libreal/audio_decoder.c index 75c822ea8..a22ac8d67 100644 --- a/src/libreal/audio_decoder.c +++ b/src/libreal/audio_decoder.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: audio_decoder.c,v 1.6 2002/12/07 00:27:18 guenter Exp $ + * $Id: audio_decoder.c,v 1.7 2002/12/07 01:55:36 guenter Exp $ * * thin layer to use real binary-only codecs in xine * @@ -549,8 +549,6 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf) audio_buffer->vpts = this->pts*90; /* FIXME */ - printf ("libareal: pts = %lld\n", audio_buffer->vpts); - this->pts = 0; audio_buffer->num_frames = len/this->sample_size;; diff --git a/src/libreal/xine_decoder.c b/src/libreal/xine_decoder.c index 760003b1e..346781e77 100644 --- a/src/libreal/xine_decoder.c +++ b/src/libreal/xine_decoder.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_decoder.c,v 1.12 2002/12/07 00:27:18 guenter Exp $ + * $Id: xine_decoder.c,v 1.13 2002/12/07 01:55:36 guenter Exp $ * * thin layer to use real binary-only codecs in xine * @@ -310,9 +310,6 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf) img->duration = this->duration; img->bad_frame = 0; - printf ("libreal: img->pts=%lld img->duration=%d\n", - img->pts, img->duration); - #ifdef LOG printf ("libreal: pts %lld %lld diff %lld # %d est. duration %lld\n", this->pts*90, @@ -452,7 +449,7 @@ static video_decoder_t *open_plugin (video_decoder_class_t *class_gen, this->pts = 0; this->last_pts = 0; this->num_frames = 0; - this->duration = 3000; + this->duration = 6000; return &this->video_decoder; } |