From: Ronald S. Bultje Date: Sun, 19 Dec 2004 01:07:21 +0000 (+0000) Subject: ext/ffmpeg/gstffmpegprotocol.c: Add debug. Don't EOS unless all data was read. X-Git-Tag: 1.19.3~499^2~1913 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cbeebe3b430a7219062bd2d9f086e197d5fef78b;p=platform%2Fupstream%2Fgstreamer.git ext/ffmpeg/gstffmpegprotocol.c: Add debug. Don't EOS unless all data was read. Original commit message from CVS: * ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_open), (gst_ffmpegdata_peek), (gst_ffmpegdata_read), (gst_ffmpegdata_write), (gst_ffmpegdata_seek), (gst_ffmpegdata_close): Add debug. Don't EOS unless all data was read. --- diff --git a/ChangeLog b/ChangeLog index d77b1b8..307574b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2004-12-19 Ronald S. Bultje + * ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_open), + (gst_ffmpegdata_peek), (gst_ffmpegdata_read), + (gst_ffmpegdata_write), (gst_ffmpegdata_seek), + (gst_ffmpegdata_close): + Add debug. Don't EOS unless all data was read. + +2004-12-19 Ronald S. Bultje + * ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_peek), (gst_ffmpegdata_read), (gst_ffmpegdata_seek): Some "seeking" hacks, and separate peek from read (read = peek + diff --git a/ext/ffmpeg/gstffmpegprotocol.c b/ext/ffmpeg/gstffmpegprotocol.c index b757aa8..db2032e 100644 --- a/ext/ffmpeg/gstffmpegprotocol.c +++ b/ext/ffmpeg/gstffmpegprotocol.c @@ -50,6 +50,8 @@ gst_ffmpegdata_open (URLContext * h, const char *filename, int flags) GstProtocolInfo *info; GstPad *pad; + GST_LOG ("Opening %s", filename); + info = g_new0 (GstProtocolInfo, 1); info->flags = flags; @@ -96,7 +98,7 @@ gst_ffmpegdata_peek (URLContext * h, unsigned char *buf, int size) guint32 total, request; guint8 *data; GstProtocolInfo *info; - gboolean have_event; + gboolean have_event, will_get_eos; info = (GstProtocolInfo *) h->priv_data; @@ -108,12 +110,12 @@ gst_ffmpegdata_peek (URLContext * h, unsigned char *buf, int size) return 0; do { - have_event = FALSE; + have_event = FALSE, will_get_eos = FALSE; /* prevent EOS */ - if (gst_bytestream_tell (bs) + size > gst_bytestream_length (bs)) { + if (gst_bytestream_tell (bs) + size >= gst_bytestream_length (bs)) { request = (int) (gst_bytestream_length (bs) - gst_bytestream_tell (bs)); - info->eos = TRUE; + will_get_eos = TRUE; } else { request = size; } @@ -134,6 +136,8 @@ gst_ffmpegdata_peek (URLContext * h, unsigned char *buf, int size) g_warning ("gstffmpegprotocol: no bytestream event"); return total; } + GST_LOG ("Reading (req %d, got %d) gave event of type %d", + request, total, GST_EVENT_TYPE (event)); switch (GST_EVENT_TYPE (event)) { case GST_EVENT_DISCONTINUOUS: gst_event_unref (event); @@ -155,6 +159,10 @@ gst_ffmpegdata_peek (URLContext * h, unsigned char *buf, int size) gst_pad_event_default (info->pad, event); break; } + } else { + GST_DEBUG ("got data (%d bytes)", request); + if (will_get_eos) + info->eos = TRUE; } } while ((!info->eos && total != request) || have_event); @@ -170,6 +178,8 @@ gst_ffmpegdata_read (URLContext * h, unsigned char *buf, int size) GstByteStream *bs; GstProtocolInfo *info; + GST_DEBUG ("Reading %d bytes of data", size); + info = (GstProtocolInfo *) h->priv_data; bs = info->bs; res = gst_ffmpegdata_peek (h, buf, size); @@ -177,6 +187,8 @@ gst_ffmpegdata_read (URLContext * h, unsigned char *buf, int size) gst_bytestream_flush_fast (bs, res); } + GST_DEBUG ("Returning %d bytes", res); + return res; } @@ -186,6 +198,8 @@ gst_ffmpegdata_write (URLContext * h, unsigned char *buf, int size) GstProtocolInfo *info; GstBuffer *outbuf; + GST_DEBUG ("Writing %d bytes", size); + info = (GstProtocolInfo *) h->priv_data; g_return_val_if_fail (info->flags == URL_WRONLY, -EIO); @@ -207,6 +221,8 @@ gst_ffmpegdata_seek (URLContext * h, offset_t pos, int whence) GstProtocolInfo *info; guint64 newpos; + GST_DEBUG ("Seeking to %" G_GINT64_FORMAT ", whence=%d", pos, whence); + info = (GstProtocolInfo *) h->priv_data; /* get data (typefind hack) */ @@ -313,6 +329,8 @@ gst_ffmpegdata_close (URLContext * h) info = (GstProtocolInfo *) h->priv_data; + GST_LOG ("Closing file"); + switch (info->flags) { case URL_WRONLY:{ /* send EOS - that closes down the stream */