Gstreamer mediaengine: Rename the config group
[profile/ivi/rygel.git] / src / media-engines / gstreamer / rygel-gst-media-engine.vala
1 /*
2  * Copyright (C) 2012 Intel Corporation.
3  *
4  * Author: Jens Georg <jensg@openismus.com>
5  *
6  * This file is part of Rygel.
7  *
8  * Rygel is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Rygel is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  */
22
23 using Gst;
24 using Gee;
25
26 // Remove for GStreamer 1.0
27 [CCode (cname = "PRESET_DIR")]
28 internal extern static const string PRESET_DIR;
29
30 [CCode (cname="gst_preset_set_app_dir")]
31 extern bool gst_preset_set_app_dir (string app_dir);
32
33 public class Rygel.GstMediaEngine : Rygel.MediaEngine {
34     private GLib.List<DLNAProfile> dlna_profiles = null;
35     private GLib.List<Transcoder> transcoders = null;
36
37     public GstMediaEngine () {
38         unowned string[] args = null;
39
40         Gst.init (ref args);
41         gst_preset_set_app_dir (PRESET_DIR);
42
43         var discoverer = new GUPnPDLNA.Discoverer ((ClockTime) SECOND,
44                                                    true,
45                                                    false);
46         foreach (var profile in discoverer.list_profiles ()) {
47             var p = new DLNAProfile (profile.name, profile.mime);
48             this.dlna_profiles.prepend (p);
49         }
50         this.dlna_profiles.prepend (new DLNAProfile ("DIDL_S", "text/xml"));
51
52         this.dlna_profiles.reverse ();
53
54         var transcoding = true;
55         var transcoder_list = new ArrayList<string> ();
56
57         var config = MetaConfig.get_default ();
58         try {
59             transcoding = config.get_transcoding ();
60             transcoder_list = config.get_string_list ("GstMediaEngine",
61                                                       "transcoders");
62         } catch (Error err) {}
63
64         if (transcoding) {
65             foreach (var transcoder in transcoder_list) {
66                 switch (transcoder) {
67                     case "lpcm":
68                         this.transcoders.prepend (new L16Transcoder ());
69                         break;
70                     case "mp3":
71                         this.transcoders.prepend (new MP3Transcoder ());
72                         break;
73                     case "mp2ts":
74                         this.transcoders.prepend (new MP2TSTranscoder
75                                         (MP2TSProfile.SD_EU));
76                         this.transcoders.prepend (new MP2TSTranscoder
77                                         (MP2TSProfile.SD_NA));
78                         this.transcoders.prepend (new MP2TSTranscoder
79                                         (MP2TSProfile.HD_NA));
80                         break;
81                     case "wmv":
82                         this.transcoders.prepend (new WMVTranscoder ());
83                         break;
84                     case "aac":
85                         this.transcoders.prepend (new AACTranscoder ());
86                         break;
87                     case "avc":
88                         this.transcoders.prepend (new AVCTranscoder ());
89                         break;
90                     default:
91                         debug ("Unsupported transcoder \"%s\"", transcoder);
92                         break;
93                 }
94             }
95
96             this.transcoders.reverse ();
97         }
98     }
99
100     public override unowned GLib.List<DLNAProfile> get_dlna_profiles () {
101         return this.dlna_profiles;
102     }
103
104     public override unowned GLib.List<Transcoder>? get_transcoders () {
105         return this.transcoders;
106     }
107
108     public override DataSource? create_data_source (string uri) {
109         try {
110             return new GstDataSource (uri);
111         } catch (Error error) {
112             return null;
113         }
114     }
115
116     public DataSource create_data_source_from_element (Element element) {
117         return new GstDataSource.from_element (element);
118     }
119 }
120
121 public static Rygel.MediaEngine module_get_instance () {
122     return new Rygel.GstMediaEngine ();
123 }