From f909ff239f700b5b3f0c07f8d87d02f7bc111969 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 20 Apr 2010 13:00:38 +0200 Subject: [PATCH] GESTimelinePipeline: Store encoding profile --- ges/ges-timeline-pipeline.c | 1 + ges/ges-timeline-pipeline.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ges/ges-timeline-pipeline.c b/ges/ges-timeline-pipeline.c index 29a8e98031..769bbf703a 100644 --- a/ges/ges-timeline-pipeline.c +++ b/ges/ges-timeline-pipeline.c @@ -437,6 +437,7 @@ ges_timeline_pipeline_set_render_settings (GESTimelinePipeline * pipeline, } g_object_set (pipeline->encodebin, "profile", profile, NULL); + pipeline->profile = profile; return TRUE; } diff --git a/ges/ges-timeline-pipeline.h b/ges/ges-timeline-pipeline.h index 3a92644185..04e1f7b00f 100644 --- a/ges/ges-timeline-pipeline.h +++ b/ges/ges-timeline-pipeline.h @@ -75,6 +75,8 @@ struct _GESTimelinePipeline { GESPipelineFlags mode; GList *chains; + + GstEncodingProfile *profile; }; struct _GESTimelinePipelineClass {