7ab5ba43c81915758a4d8a89ee709faca64ed181
[platform/upstream/gstreamer.git] / gst / mpegdemux / flutspmtstreaminfo.c
1  /*
2   * This library is licensed under 2 different licenses and you
3   * can choose to use it under the terms of either one of them. The
4   * two licenses are the MPL 1.1 and the LGPL.
5   *
6   * MPL:
7   *
8   * The contents of this file are subject to the Mozilla Public License
9   * Version 1.1 (the "License"); you may not use this file except in
10   * compliance with the License. You may obtain a copy of the License at
11   * http://www.mozilla.org/MPL/.
12   *
13   * Software distributed under the License is distributed on an "AS IS"
14   * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
15   * License for the specific language governing rights and limitations
16   * under the License.
17   *
18   * LGPL:
19   *
20   * This library is free software; you can redistribute it and/or
21   * modify it under the terms of the GNU Library General Public
22   * License as published by the Free Software Foundation; either
23   * version 2 of the License, or (at your option) any later version.
24   *
25   * This library is distributed in the hope that it will be useful,
26   * but WITHOUT ANY WARRANTY; without even the implied warranty of
27   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
28   * Library General Public License for more details.
29   *
30   * You should have received a copy of the GNU Library General Public
31   * License along with this library; if not, write to the
32   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
33   * Boston, MA 02111-1307, USA.
34   *
35   * The Original Code is Fluendo MPEG Demuxer plugin.
36   *
37   * The Initial Developer of the Original Code is Fluendo, S.L.
38   * Portions created by Fluendo, S.L. are Copyright (C) 2005
39   * Fluendo, S.L. All Rights Reserved.
40   *
41   * Contributor(s): Jan Schmidt <jan@fluendo.com>
42   */
43
44 #ifdef HAVE_CONFIG_H
45 #include "config.h"
46 #endif
47
48 #include <gst/gst.h>
49
50 #include "flutspmtstreaminfo.h"
51
52 enum
53 {
54   PROP_0,
55   PROP_PID,
56   PROP_LANGUAGES,
57   PROP_STREAM_TYPE,
58   PROP_DESCRIPTORS,
59 };
60
61 GST_BOILERPLATE (MpegTsPmtStreamInfo, mpegts_pmt_stream_info, GObject,
62     G_TYPE_OBJECT);
63
64 static void mpegts_pmt_stream_info_set_property (GObject * object,
65     guint prop_id, const GValue * value, GParamSpec * spec);
66 static void mpegts_pmt_stream_info_get_property (GObject * object,
67     guint prop_id, GValue * value, GParamSpec * spec);
68 static void mpegts_pmt_stream_info_finalize (GObject * object);
69
70 static void
71 mpegts_pmt_stream_info_base_init (gpointer klass)
72 {
73 }
74
75 static void
76 mpegts_pmt_stream_info_class_init (MpegTsPmtStreamInfoClass * klass)
77 {
78   GObjectClass *gobject_klass = (GObjectClass *) klass;
79
80   gobject_klass->set_property = mpegts_pmt_stream_info_set_property;
81   gobject_klass->get_property = mpegts_pmt_stream_info_get_property;
82   gobject_klass->finalize = mpegts_pmt_stream_info_finalize;
83
84   g_object_class_install_property (gobject_klass, PROP_PID,
85       g_param_spec_uint ("pid", "PID carrying this stream",
86           "PID which carries this stream", 1, G_MAXUINT16, 1,
87           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
88   g_object_class_install_property (gobject_klass, PROP_LANGUAGES,
89       g_param_spec_value_array ("languages", "Languages of this stream",
90           "Value array of the languages of this stream",
91           g_param_spec_string ("language", "language", "language", "",
92               G_PARAM_READABLE | G_PARAM_STATIC_STRINGS),
93           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
94
95   g_object_class_install_property (gobject_klass, PROP_STREAM_TYPE,
96       g_param_spec_uint ("stream-type",
97           "Stream type", "Stream type", 0, G_MAXUINT8, 0,
98           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
99
100   g_object_class_install_property (gobject_klass, PROP_DESCRIPTORS,
101       g_param_spec_value_array ("descriptors",
102           "Descriptors",
103           "Value array of strings containing stream descriptors",
104           g_param_spec_boxed ("descriptor",
105               "descriptor",
106               "", G_TYPE_GSTRING, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS),
107           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
108 }
109
110 static void
111 mpegts_pmt_stream_info_init (MpegTsPmtStreamInfo * pmt_stream_info,
112     MpegTsPmtStreamInfoClass * klass)
113 {
114   pmt_stream_info->languages = g_value_array_new (0);
115   pmt_stream_info->descriptors = g_value_array_new (0);
116 }
117
118 static void
119 mpegts_pmt_stream_info_finalize (GObject * object)
120 {
121   MpegTsPmtStreamInfo *info = MPEGTS_PMT_STREAM_INFO (object);
122
123   g_value_array_free (info->languages);
124   g_value_array_free (info->descriptors);
125
126   GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
127 }
128
129 MpegTsPmtStreamInfo *
130 mpegts_pmt_stream_info_new (guint16 pid, guint8 type)
131 {
132   MpegTsPmtStreamInfo *info;
133   info = g_object_new (MPEGTS_TYPE_PMT_STREAM_INFO, NULL);
134
135   info->pid = pid;
136   info->stream_type = type;
137   return info;
138 }
139
140 void
141 mpegts_pmt_stream_info_add_language (MpegTsPmtStreamInfo * pmt_info,
142     gchar * language)
143 {
144   GValue v = { 0, };
145
146   g_return_if_fail (MPEGTS_IS_PMT_STREAM_INFO (pmt_info));
147
148   g_value_init (&v, G_TYPE_STRING);
149   g_value_take_string (&v, language);
150   g_value_array_append (pmt_info->languages, &v);
151   g_value_unset (&v);
152 }
153
154 void
155 mpegts_pmt_stream_info_add_descriptor (MpegTsPmtStreamInfo * pmt_info,
156     const gchar * descriptor, guint length)
157 {
158   GValue value = { 0 };
159   GString *string;
160
161   g_return_if_fail (MPEGTS_IS_PMT_STREAM_INFO (pmt_info));
162
163   string = g_string_new_len (descriptor, length);
164
165   g_value_init (&value, G_TYPE_GSTRING);
166   g_value_take_boxed (&value, string);
167   g_value_array_append (pmt_info->descriptors, &value);
168   g_value_unset (&value);
169 }
170
171 static void
172 mpegts_pmt_stream_info_set_property (GObject * object, guint prop_id,
173     const GValue * value, GParamSpec * spec)
174 {
175   g_return_if_fail (MPEGTS_IS_PMT_STREAM_INFO (object));
176
177   /* No settable properties */
178   G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, spec);
179 }
180
181 static void
182 mpegts_pmt_stream_info_get_property (GObject * object, guint prop_id,
183     GValue * value, GParamSpec * spec)
184 {
185   MpegTsPmtStreamInfo *si;
186
187   g_return_if_fail (MPEGTS_IS_PMT_STREAM_INFO (object));
188
189   si = MPEGTS_PMT_STREAM_INFO (object);
190
191   switch (prop_id) {
192     case PROP_STREAM_TYPE:
193       g_value_set_uint (value, si->stream_type);
194       break;
195     case PROP_PID:
196       g_value_set_uint (value, si->pid);
197       break;
198     case PROP_LANGUAGES:
199       g_value_set_boxed (value, si->languages);
200       break;
201     case PROP_DESCRIPTORS:
202       g_value_set_boxed (value, si->descriptors);
203       break;
204     default:
205       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, spec);
206       break;
207   }
208 }