diff -r 9b2c3c7a1a9c -r 567bb019e3e3 gst_plugins_base/gst/playback/gstplay-enum.h --- a/gst_plugins_base/gst/playback/gstplay-enum.h Wed Mar 31 22:03:18 2010 +0300 +++ b/gst_plugins_base/gst/playback/gstplay-enum.h Tue Aug 31 15:30:33 2010 +0300 @@ -39,6 +39,10 @@ } GstAutoplugSelectResult; #define GST_TYPE_AUTOPLUG_SELECT_RESULT (gst_autoplug_select_result_get_type()) + +#ifdef __SYMBIAN32__ +IMPORT_C +#endif GType gst_autoplug_select_result_get_type (void); /** @@ -53,6 +57,8 @@ * configuration of audioconvert and audioresample. * @GST_PLAY_FLAG_NATIVE_VIDEO: only allow native video formats, this omits * configuration of ffmpegcolorspace and videoscale. + * @GST_PLAY_FLAG_DOWNLOAD: enable progressice download buffering for selected + * formats. * * Extra flags to configure the behaviour of the sinks. */ @@ -63,10 +69,15 @@ GST_PLAY_FLAG_VIS = (1 << 3), GST_PLAY_FLAG_SOFT_VOLUME = (1 << 4), GST_PLAY_FLAG_NATIVE_AUDIO = (1 << 5), - GST_PLAY_FLAG_NATIVE_VIDEO = (1 << 6) + GST_PLAY_FLAG_NATIVE_VIDEO = (1 << 6), + GST_PLAY_FLAG_DOWNLOAD = (1 << 7) } GstPlayFlags; #define GST_TYPE_PLAY_FLAGS (gst_play_flags_get_type()) + +#ifdef __SYMBIAN32__ +IMPORT_C +#endif GType gst_play_flags_get_type (void); G_END_DECLS