diff -r 4b0c6ed43234 -r 8e837d1bf446 gst_plugins_base/gst/playback/gstplay-enum.h --- a/gst_plugins_base/gst/playback/gstplay-enum.h Wed Mar 24 17:58:42 2010 -0500 +++ b/gst_plugins_base/gst/playback/gstplay-enum.h Wed Mar 24 18:04:17 2010 -0500 @@ -53,6 +53,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,7 +65,8 @@ 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())