summaryrefslogtreecommitdiff
path: root/tests/examples/app/appsrc-seekable.c
AgeCommit message (Collapse)AuthorFilesLines
2012-11-03Fix FSF addressTim-Philipp Müller1-2/+2
https://bugzilla.gnome.org/show_bug.cgi?id=687520
2012-10-09docs: playbin2 -> playbinWim Taymans1-3/+3
2012-03-30update for buffer api changeWim Taymans1-3/+3
2012-02-22update for new memory apiWim Taymans1-1/+1
2011-06-13-base: update for buffer API changeWim Taymans1-1/+1
2011-03-28tests: work on porting the unit testsWim Taymans1-2/+3
2010-12-04tests: use GLib 2.22 API unconditionallyTim-Philipp Müller1-5/+0
2010-10-10examples: g_mapped_file_unref exists already since GLib 2.21.3Vincent Penquerc'h1-1/+1
2009-12-21tests: don't use deprecated GLib API g_mapped_file_freeTim-Philipp Müller1-1/+6
Fixes #605100.
2009-03-24examples: use new method to set flagsWim Taymans1-1/+1
Use the new core method for setting object enum properties by name.
2009-03-16examples: fix g_object_set() value type.Wim Taymans1-1/+1
Make sure we cast the length value as a gint64 to the vararg g_object_set() just incase sizeof(gsize) != sizeof(gint64).
2008-12-15examples/app/: Fix example to unref after emiting the push-buffer action.Wim Taymans1-0/+1
Original commit message from CVS: * examples/app/appsrc-ra.c: (feed_data): * examples/app/appsrc-seekable.c: (feed_data): * examples/app/appsrc-stream.c: (read_data): * examples/app/appsrc-stream2.c: (feed_data): Fix example to unref after emiting the push-buffer action. * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init), (gst_app_src_push_buffer_full), (gst_app_src_push_buffer), (gst_app_src_push_buffer_action): Don't take the ref on the buffer in push-buffer action because it's too awkward for bindings. Fixes #564482.
2008-06-18Fix gtk-doc warnings. Also don't misuse api-doc comments for normal comments.Stefan Kost1-1/+1
Original commit message from CVS: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * examples/app/appsrc-ra.c: * examples/app/appsrc-seekable.c: * examples/app/appsrc-stream.c: * examples/app/appsrc-stream2.c: * ext/directfb/dfbvideosink.h: * ext/metadata/gstbasemetadata.c: * ext/metadata/gstbasemetadata.h: * ext/metadata/metadata.c: * ext/metadata/metadataexif.c: * ext/theora/theoradec.h: * gst/deinterlace2/gstdeinterlace2.h: * gst/deinterlace2/tvtime/speedy.c: * gst/deinterlace2/tvtime/speedy.h: * gst/deinterlace2/tvtime/vfir.c: Fix gtk-doc warnings. Also don't misuse api-doc comments for normal comments.
2008-06-06examples/app/: Added 3 more example application for using appsrc in ↵Wim Taymans1-0/+228
random-access mode, pull-mode streaming and pull ... Original commit message from CVS: * examples/app/Makefile.am: * examples/app/appsrc-ra.c: (feed_data), (seek_data), (found_source), (bus_message), (main): * examples/app/appsrc-seekable.c: (feed_data), (seek_data), (found_source), (bus_message), (main): * examples/app/appsrc-stream2.c: (feed_data), (found_source), (bus_message), (main): Added 3 more example application for using appsrc in random-access mode, pull-mode streaming and pull mode seekable. * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init), (gst_app_src_start), (gst_app_src_do_get_size), (gst_app_src_create): * gst-libs/gst/app/gstappsrc.h: Make stream-type property writable. Unset flushing when starting so that we reuse appsrc. Inform basesrc about the configured size. Emit seek-data signal when we are going to a different offset in random-access mode.