gst/multifile/gstmultifilesrc.c: Add example to the docs. Fix buffer-offset-end and...
authorStefan Kost <ensonic@users.sourceforge.net>
Wed, 18 Jul 2007 07:51:11 +0000 (07:51 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Wed, 18 Jul 2007 07:51:11 +0000 (07:51 +0000)
Original commit message from CVS:
* gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
Add example to the docs. Fix buffer-offset-end and add some debug.

ChangeLog
gst/multifile/gstmultifilesrc.c

index 47216811f19def32d0360eaae758cc0303c411da..8911d241f9d658528eeb67d26fff4d6dd1db414e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-18  Stefan Kost  <ensonic@users.sf.net>
+
+       * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
+         Add example to the docs. Fix buffer-offset-end and add some debug.
+
 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
 
        * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
index 7978a1e7a12812c68fa3b3c1061842bcfb59318f..43e449d506004d1ceefecab70c17b85e7b2a2ef4 100644 (file)
  * @short_description: reads buffers from sequentially-named files
  * @see_also: #GstFileSrc
  *
- * Reads buffers from sequentially named files.
- */
+ * <refsect2>
+ * <para>
+ * Reads buffers from sequentially named files. If used together with an image
+ * decoder one needs to use the GstMultiFileSrc::caps property or a capsfilter
+ * to force to caps containing a framerate. Otherwise imagedecoders send EOS
+ * after the first picture.
+ * </para>
+ * <title>Example launch line</title>
+ * <para>
+ * <programlisting>
+ * gst-launch multifilesrc location="img.%04d.png" index=0 ! image/png,framerate='(fraction)'1/1 ! pngdec ! ffmpegcolorspace ! ffenc_mpeg4 ! avimux ! filesink location="images.avi"
+ * </programlisting>
+ * This pipeline joins multiple frames into one video.
+ * </para>
+  * </refsect2>
+*/
 
 #ifdef HAVE_CONFIG_H
 #  include "config.h"
@@ -246,6 +260,8 @@ gst_multi_file_src_create (GstPushSrc * src, GstBuffer ** buffer)
 
   filename = gst_multi_file_src_get_filename (filesrc);
 
+  GST_DEBUG_OBJECT (filesrc, "reading from file \"%s\".", filename);
+
   file = fopen (filename, "rb");
   if (!file) {
     goto handle_error;
@@ -266,12 +282,13 @@ gst_multi_file_src_create (GstPushSrc * src, GstBuffer ** buffer)
 
   GST_BUFFER_SIZE (buf) = size;
   GST_BUFFER_OFFSET (buf) = filesrc->offset;
-  GST_BUFFER_OFFSET (buf) = filesrc->offset + size;
+  GST_BUFFER_OFFSET_END (buf) = filesrc->offset + size;
   filesrc->offset += size;
   gst_buffer_set_caps (buf, filesrc->caps);
 
-  fclose (file);
+  GST_DEBUG_OBJECT (filesrc, "read file \"%s\".", filename);
 
+  fclose (file);
   g_free (filename);
   *buffer = buf;
   return GST_FLOW_OK;