From c9eba54506639c428c99d33a948b99133868762d Mon Sep 17 00:00:00 2001 From: Brandon Lewis Date: Thu, 12 Aug 2010 15:44:47 +0200 Subject: [PATCH] always support audio on still images --- ges/ges-timeline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index 11bd18ddff..f7b58e2294 100644 --- a/ges/ges-timeline.c +++ b/ges/ges-timeline.c @@ -361,7 +361,7 @@ discoverer_discovered_cb (GstDiscoverer * discoverer, else if (sinf->streamtype == GST_STREAM_VIDEO) tfs->supportedformats |= GES_TRACK_TYPE_VIDEO; else if (sinf->streamtype == GST_STREAM_IMAGE) { - tfs->supportedformats |= GES_TRACK_TYPE_VIDEO; + tfs->supportedformats |= GES_TRACK_TYPE_VIDEO | GES_TRACK_TYPE_AUDIO; is_image = TRUE; } }