8fbd5bda52
* NEW: Link explicitly with the thread library. * BUG: MediaPipeline: Prevent message callback routine possible recursion. * NEW: MediaPipeline: Raise the Start event when a new stream is started. * NEW: MediaPipeline: The Position and Duration properties are now computed during the message callback routine. * NEW: MediaPipeline: Raise the AboutToFinish event two seconds before the stream end. * NEW: MediaPlayer: NextURL is a new property that you must set to define the next stream that will be played without gap. * NEW: MediaPlayer: Setting the URL property now automatically stops the player. * NEW: MediaPlayer: The AboutToFinish event is now raised by MediaPipeline. This is not the GStreamer 'about-to-finish' signal anymore. git-svn-id: svn://localhost/gambas/trunk@7933 867c0c6c-44f3-4631-809d-bfa615b0a4ec
13 lines
339 B
Makefile
13 lines
339 B
Makefile
COMPONENT = gb.media
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.media.la
|
|
|
|
gb_media_la_LIBADD = @THREAD_LIB@ @MEDIA_LIB@
|
|
gb_media_la_LDFLAGS = -module @LD_FLAGS@ @MEDIA_LDFLAGS@
|
|
gb_media_la_CPPFLAGS = @THREAD_INC@ @MEDIA_INC@
|
|
|
|
gb_media_la_SOURCES = \
|
|
main.c main.h \
|
|
c_media.c c_media.h \
|
|
c_mediaplayer.c c_mediaplayer.h
|