docs: RygelMediaEngine: More hints about optional features.
[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         /* Get the possible DLNA profiles
44          * to add to the list of DLNA profiles supported by
45          * this media engine, for get_dlna_profiles():
46          */
47         var discoverer = new GUPnPDLNA.Discoverer ((ClockTime) SECOND,
48                                                    true,
49                                                    false);
50         foreach (var profile in discoverer.list_profiles ()) {
51             var p = new DLNAProfile (profile.name, profile.mime);
52
53             /* TODO: Check that we (via GStreamer) really support this profile
54              * instead of just claiming to support everything.
55              */
56             this.dlna_profiles.prepend (p);
57         }
58         this.dlna_profiles.prepend (new DLNAProfile ("DIDL_S", "text/xml"));
59
60         this.dlna_profiles.reverse ();
61
62         var transcoding = true;
63         var transcoder_list = new ArrayList<string> ();
64
65         var config = MetaConfig.get_default ();
66         try {
67             transcoding = config.get_transcoding ();
68             transcoder_list = config.get_string_list ("GstMediaEngine",
69                                                       "transcoders");
70         } catch (Error err) {}
71
72         if (transcoding) {
73             foreach (var transcoder in transcoder_list) {
74                 switch (transcoder) {
75                     case "lpcm":
76                         this.transcoders.prepend (new L16Transcoder ());
77                         break;
78                     case "mp3":
79                         this.transcoders.prepend (new MP3Transcoder ());
80                         break;
81                     case "mp2ts":
82                         this.transcoders.prepend (new MP2TSTranscoder
83                                         (MP2TSProfile.SD_EU));
84                         this.transcoders.prepend (new MP2TSTranscoder
85                                         (MP2TSProfile.SD_NA));
86                         this.transcoders.prepend (new MP2TSTranscoder
87                                         (MP2TSProfile.HD_NA));
88                         break;
89                     case "wmv":
90                         this.transcoders.prepend (new WMVTranscoder ());
91                         break;
92                     case "aac":
93                         this.transcoders.prepend (new AACTranscoder ());
94                         break;
95                     case "avc":
96                         this.transcoders.prepend (new AVCTranscoder ());
97                         break;
98                     default:
99                         debug ("Unsupported transcoder \"%s\"", transcoder);
100                         break;
101                 }
102             }
103
104             this.transcoders.reverse ();
105         }
106     }
107
108     public override unowned GLib.List<DLNAProfile> get_dlna_profiles () {
109         return this.dlna_profiles;
110     }
111
112     public override unowned GLib.List<Transcoder>? get_transcoders () {
113         return this.transcoders;
114     }
115
116     public override DataSource? create_data_source (string uri) {
117         try {
118             return new GstDataSource (uri);
119         } catch (Error error) {
120             return null;
121         }
122     }
123
124     public DataSource create_data_source_from_element (Element element) {
125         return new GstDataSource.from_element (element);
126     }
127 }
128
129 public static Rygel.MediaEngine module_get_instance () {
130     return new Rygel.GstMediaEngine ();
131 }