renatofilho@754
|
1 |
/*
|
renatofilho@754
|
2 |
* GStreamer MythTV Plug-in Copyright (C) <2006> Rosfran Borges
|
renatofilho@754
|
3 |
* <rosfran.borges@indt.org.br> This library is free software; you can
|
renatofilho@754
|
4 |
* redistribute it and/or modify it under the terms of the GNU Library
|
renatofilho@754
|
5 |
* General Public License as published by the Free Software Foundation;
|
renatofilho@754
|
6 |
* either version 2 of the License, or (at your option) any later version.
|
renatofilho@754
|
7 |
* This library is distributed in the hope that it will be useful, but
|
renatofilho@754
|
8 |
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@754
|
9 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library
|
renatofilho@754
|
10 |
* General Public License for more details. You should have received a copy
|
renatofilho@754
|
11 |
* of the GNU Library General Public License along with this library; if
|
renatofilho@754
|
12 |
* not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite
|
renatofilho@754
|
13 |
* 330, Boston, MA 02111-1307, USA.
|
renatofilho@608
|
14 |
*/
|
renatofilho@608
|
15 |
/**
|
renatofilho@608
|
16 |
* SECTION:element-mythtvsrc
|
renatofilho@608
|
17 |
*
|
renatofilho@608
|
18 |
* <refsect2>
|
renatofilho@608
|
19 |
* <para>
|
renatofilho@608
|
20 |
* MythTVSrc allows to access a remote MythTV backend streaming Video/Audio server,
|
renatofilho@608
|
21 |
* and to render audio and video content through a TCP/IP connection to a specific
|
renatofilho@608
|
22 |
* port on this server, and based on a known MythTV protocol that is based on
|
renatofilho@608
|
23 |
* some message passing, such as REQUEST_BLOCK on a specified number of bytes, to get
|
renatofilho@608
|
24 |
* some chunk of remote file data.
|
renatofilho@608
|
25 |
* You should pass the information aboute the remote MythTV backend server
|
renatofilho@608
|
26 |
* through the <link linkend="GstMythTVSrc--location">location</link> property.
|
renatofilho@608
|
27 |
* </para>
|
renatofilho@608
|
28 |
* <title>Examples</title>
|
renatofilho@608
|
29 |
* <para>
|
renatofilho@608
|
30 |
* If you want to get the LiveTV content (set channel, TV tuner, RemoteEncoder,
|
renatofilho@608
|
31 |
* Recorder),
|
renatofilho@608
|
32 |
* put the following URI:
|
renatofilho@608
|
33 |
*
|
renatofilho@608
|
34 |
* <programlisting>
|
renatofilho@608
|
35 |
* myth://xxx.xxx.xxx.xxx:6543/livetv?channel=BBC
|
renatofilho@608
|
36 |
* </programlisting>
|
renatofilho@608
|
37 |
*
|
renatofilho@608
|
38 |
* This URI will say to the gmyth library to configure the Recorder instance (used to
|
renatofilho@608
|
39 |
* change the channel, start the TV multimedia content transmition, etc.), using
|
renatofilho@608
|
40 |
* the IP address (xxx.xxx.xxx.xxx) and port number (6543) of the MythTV backend
|
renatofilho@608
|
41 |
* server, and setting the channel name to "BBC".
|
renatofilho@608
|
42 |
*
|
renatofilho@608
|
43 |
* To get a already recorded the MythTV NUV file, put the following URI:
|
renatofilho@608
|
44 |
*
|
renatofilho@608
|
45 |
* <programlisting>
|
renatofilho@608
|
46 |
* myth://xxx.xxx.xxx.xxx:6543/filename.nuv
|
renatofilho@608
|
47 |
* </programlisting>
|
renatofilho@608
|
48 |
*
|
renatofilho@608
|
49 |
* This URI will say to the gmyth library to configure the Recorder instance (used to
|
renatofilho@608
|
50 |
* change the channel, start the TV multimedia content transmition, etc.), using
|
renatofilho@608
|
51 |
* the IP address (xxx.xxx.xxx.xxx) and port number (6543) of the MythTV backend
|
renatofilho@608
|
52 |
* server, and setting the channel name to "BBC".
|
renatofilho@608
|
53 |
*
|
renatofilho@608
|
54 |
* Another possible way to use the LiveTV content, and just in the case you want to
|
renatofilho@608
|
55 |
* use the mysql database, put the location URI in the following format:
|
renatofilho@608
|
56 |
*
|
renatofilho@608
|
57 |
* <programlisting>
|
renatofilho@608
|
58 |
* myth://mythtv:mythtv@xxx.xxx.xxx.xxx:6543/?mythconverg&channel=9
|
renatofilho@608
|
59 |
* </programlisting>
|
renatofilho@608
|
60 |
*
|
renatofilho@608
|
61 |
* Where the first field is the protocol (myth), the second and third are user
|
renatofilho@608
|
62 |
* name (mythtv) and password (mythtv), then backend host name and port number,
|
renatofilho@608
|
63 |
* and the last field is the database name (mythconverg).
|
renatofilho@608
|
64 |
* </para>
|
renatofilho@608
|
65 |
* </refsect2>
|
renatofilho@608
|
66 |
*/
|
renatofilho@608
|
67 |
#ifdef HAVE_CONFIG_H
|
renatofilho@608
|
68 |
#include "config.h"
|
renatofilho@608
|
69 |
#endif
|
renatofilho@608
|
70 |
|
renatofilho@608
|
71 |
#include "gstmythtvsrc.h"
|
renatofilho@608
|
72 |
#include <gmyth/gmyth_file.h>
|
renatofilho@608
|
73 |
#include <gmyth/gmyth_file_transfer.h>
|
renatofilho@608
|
74 |
#include <gmyth/gmyth_file_local.h>
|
renatofilho@608
|
75 |
#include <gmyth/gmyth_livetv.h>
|
renatofilho@608
|
76 |
|
renatofilho@608
|
77 |
#include <gmyth/gmyth_socket.h>
|
renatofilho@608
|
78 |
#include <gmyth/gmyth_tvchain.h>
|
renatofilho@608
|
79 |
|
renatofilho@608
|
80 |
#include <string.h>
|
renatofilho@608
|
81 |
#include <unistd.h>
|
renatofilho@608
|
82 |
|
renatofilho@751
|
83 |
GST_DEBUG_CATEGORY_STATIC(mythtvsrc_debug);
|
renatofilho@608
|
84 |
#define GST_GMYTHTV_ID_NUM 1
|
renatofilho@608
|
85 |
#define GST_GMYTHTV_CHANNEL_DEFAULT_NUM (-1)
|
renatofilho@812
|
86 |
#define GMYTHTV_VERSION_DEFAULT 30
|
renatofilho@608
|
87 |
#define GMYTHTV_TRANSFER_MAX_WAITS 100
|
renatofilho@608
|
88 |
#define GMYTHTV_TRANSFER_MAX_RESENDS 2
|
renatofilho@608
|
89 |
#define GMYTHTV_TRANSFER_MAX_BUFFER (128*1024)
|
renatofilho@822
|
90 |
#define READ_SIZE (4*1024)
|
renatofilho@608
|
91 |
#define GST_FLOW_ERROR_NO_DATA (-101)
|
renatofilho@608
|
92 |
|
renatofilho@608
|
93 |
static const GstElementDetails gst_mythtv_src_details =
|
renatofilho@751
|
94 |
GST_ELEMENT_DETAILS("MythTV client source",
|
renatofilho@754
|
95 |
"Source/Network",
|
renatofilho@754
|
96 |
"Control and receive data as a client over the network "
|
renatofilho@754
|
97 |
"via raw socket connections using the MythTV protocol",
|
renatofilho@754
|
98 |
"Rosfran Borges <rosfran.borges@indt.org.br>");
|
renatofilho@608
|
99 |
|
renatofilho@751
|
100 |
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE("src",
|
renatofilho@754
|
101 |
GST_PAD_SRC,
|
renatofilho@754
|
102 |
GST_PAD_ALWAYS,
|
renatofilho@754
|
103 |
GST_STATIC_CAPS_ANY);
|
renatofilho@754
|
104 |
/*
|
renatofilho@754
|
105 |
* GST_STATIC_CAPS ("video/x-nuv"));
|
renatofilho@754
|
106 |
*/
|
renatofilho@608
|
107 |
|
renatofilho@754
|
108 |
enum {
|
renatofilho@754
|
109 |
PROP_0,
|
renatofilho@754
|
110 |
PROP_LOCATION,
|
renatofilho@754
|
111 |
PROP_GMYTHTV_VERSION,
|
renatofilho@754
|
112 |
PROP_GMYTHTV_LIVE,
|
renatofilho@754
|
113 |
PROP_GMYTHTV_LIVEID,
|
renatofilho@754
|
114 |
PROP_GMYTHTV_LIVE_CHAINID,
|
renatofilho@754
|
115 |
PROP_GMYTHTV_ENABLE_TIMING_POSITION,
|
renatofilho@812
|
116 |
PROP_GMYTHTV_CHANNEL_NUM
|
renatofilho@608
|
117 |
};
|
renatofilho@608
|
118 |
|
renatofilho@754
|
119 |
static void gst_mythtv_src_clear(GstMythtvSrc * mythtv_src);
|
renatofilho@608
|
120 |
|
renatofilho@754
|
121 |
static void gst_mythtv_src_finalize(GObject * gobject);
|
renatofilho@608
|
122 |
|
renatofilho@751
|
123 |
static GstFlowReturn gst_mythtv_src_create(GstPushSrc * psrc,
|
renatofilho@754
|
124 |
GstBuffer ** outbuf);
|
renatofilho@608
|
125 |
|
renatofilho@751
|
126 |
static gboolean gst_mythtv_src_start(GstBaseSrc * bsrc);
|
renatofilho@751
|
127 |
static gboolean gst_mythtv_src_stop(GstBaseSrc * bsrc);
|
renatofilho@751
|
128 |
static gboolean gst_mythtv_src_get_size(GstBaseSrc * bsrc, guint64 * size);
|
renatofilho@751
|
129 |
static gboolean gst_mythtv_src_is_seekable(GstBaseSrc * push_src);
|
renatofilho@608
|
130 |
|
renatofilho@751
|
131 |
static gboolean gst_mythtv_src_do_seek(GstBaseSrc * base,
|
renatofilho@754
|
132 |
GstSegment * segment);
|
renatofilho@608
|
133 |
|
renatofilho@754
|
134 |
static GstStateChangeReturn
|
renatofilho@754
|
135 |
gst_mythtv_src_change_state(GstElement * element,
|
renatofilho@754
|
136 |
GstStateChange transition);
|
renatofilho@608
|
137 |
|
renatofilho@754
|
138 |
static void gst_mythtv_src_set_property(GObject * object,
|
renatofilho@754
|
139 |
guint prop_id,
|
renatofilho@754
|
140 |
const GValue * value,
|
renatofilho@754
|
141 |
GParamSpec * pspec);
|
renatofilho@754
|
142 |
static void gst_mythtv_src_get_property(GObject * object,
|
renatofilho@754
|
143 |
guint prop_id, GValue * value,
|
renatofilho@754
|
144 |
GParamSpec * pspec);
|
renatofilho@608
|
145 |
|
renatofilho@754
|
146 |
static void gst_mythtv_src_uri_handler_init(gpointer g_iface,
|
renatofilho@754
|
147 |
gpointer iface_data);
|
renatofilho@608
|
148 |
|
renatofilho@754
|
149 |
static gboolean gst_mythtv_src_handle_query(GstPad * pad,
|
renatofilho@754
|
150 |
GstQuery * query);
|
renatofilho@608
|
151 |
|
renatofilho@754
|
152 |
static gboolean gst_mythtv_src_handle_event(GstPad * pad,
|
renatofilho@754
|
153 |
GstEvent * event);
|
renatofilho@608
|
154 |
|
renatofilho@751
|
155 |
static GMythFileReadResult do_read_request_response(GstMythtvSrc * src,
|
renatofilho@754
|
156 |
guint size,
|
renatofilho@754
|
157 |
GByteArray * data_ptr);
|
renatofilho@608
|
158 |
|
renatofilho@608
|
159 |
static void
|
renatofilho@751
|
160 |
_urihandler_init(GType type)
|
renatofilho@608
|
161 |
{
|
renatofilho@754
|
162 |
static const GInterfaceInfo urihandler_info = {
|
renatofilho@754
|
163 |
gst_mythtv_src_uri_handler_init,
|
renatofilho@754
|
164 |
NULL,
|
renatofilho@754
|
165 |
NULL
|
renatofilho@754
|
166 |
};
|
renatofilho@608
|
167 |
|
renatofilho@754
|
168 |
g_type_add_interface_static(type, GST_TYPE_URI_HANDLER,
|
renatofilho@754
|
169 |
&urihandler_info);
|
renatofilho@608
|
170 |
|
renatofilho@754
|
171 |
GST_DEBUG_CATEGORY_INIT(mythtvsrc_debug, "mythtvsrc", 0, "MythTV src");
|
renatofilho@608
|
172 |
}
|
renatofilho@608
|
173 |
|
renatofilho@751
|
174 |
GST_BOILERPLATE_FULL(GstMythtvSrc, gst_mythtv_src, GstPushSrc,
|
renatofilho@754
|
175 |
GST_TYPE_PUSH_SRC, _urihandler_init)
|
renatofilho@754
|
176 |
static void gst_mythtv_src_base_init(gpointer g_class)
|
renatofilho@751
|
177 |
{
|
renatofilho@754
|
178 |
GstElementClass *element_class = GST_ELEMENT_CLASS(g_class);
|
renatofilho@608
|
179 |
|
renatofilho@754
|
180 |
gst_element_class_add_pad_template(element_class,
|
renatofilho@754
|
181 |
gst_static_pad_template_get
|
renatofilho@754
|
182 |
(&srctemplate));
|
renatofilho@608
|
183 |
|
renatofilho@754
|
184 |
gst_element_class_set_details(element_class, &gst_mythtv_src_details);
|
renatofilho@608
|
185 |
|
renatofilho@754
|
186 |
element_class->change_state = gst_mythtv_src_change_state;
|
renatofilho@608
|
187 |
|
renatofilho@608
|
188 |
}
|
renatofilho@608
|
189 |
|
renatofilho@608
|
190 |
static void
|
renatofilho@751
|
191 |
gst_mythtv_src_class_init(GstMythtvSrcClass * klass)
|
renatofilho@608
|
192 |
{
|
renatofilho@754
|
193 |
GObjectClass *gobject_class;
|
renatofilho@754
|
194 |
GstPushSrcClass *gstpushsrc_class;
|
renatofilho@754
|
195 |
GstBaseSrcClass *gstbasesrc_class;
|
renatofilho@608
|
196 |
|
renatofilho@754
|
197 |
gobject_class = (GObjectClass *) klass;
|
renatofilho@754
|
198 |
gstbasesrc_class = (GstBaseSrcClass *) klass;
|
renatofilho@754
|
199 |
gstpushsrc_class = (GstPushSrcClass *) klass;
|
renatofilho@608
|
200 |
|
renatofilho@754
|
201 |
gobject_class->set_property = gst_mythtv_src_set_property;
|
renatofilho@754
|
202 |
gobject_class->get_property = gst_mythtv_src_get_property;
|
renatofilho@754
|
203 |
gobject_class->finalize = gst_mythtv_src_finalize;
|
renatofilho@608
|
204 |
|
renatofilho@754
|
205 |
g_object_class_install_property
|
renatofilho@754
|
206 |
(gobject_class, PROP_LOCATION,
|
renatofilho@754
|
207 |
g_param_spec_string("location", "Location",
|
renatofilho@754
|
208 |
"The location. In the form:"
|
renatofilho@754
|
209 |
"\n\t\t\tmyth://a.com/file.nuv"
|
renatofilho@754
|
210 |
"\n\t\t\tmyth://a.com:23223/file.nuv "
|
renatofilho@754
|
211 |
"\n\t\t\ta.com/file.nuv - default scheme 'myth'",
|
renatofilho@754
|
212 |
"", G_PARAM_READWRITE));
|
renatofilho@608
|
213 |
|
renatofilho@754
|
214 |
g_object_class_install_property
|
renatofilho@754
|
215 |
(gobject_class, PROP_GMYTHTV_VERSION,
|
renatofilho@754
|
216 |
g_param_spec_int("mythtv-version", "mythtv-version",
|
renatofilho@754
|
217 |
"Change MythTV version", 26, 30, 26,
|
renatofilho@754
|
218 |
G_PARAM_READWRITE));
|
renatofilho@608
|
219 |
|
renatofilho@754
|
220 |
g_object_class_install_property
|
renatofilho@754
|
221 |
(gobject_class, PROP_GMYTHTV_LIVEID,
|
renatofilho@754
|
222 |
g_param_spec_int("mythtv-live-id", "mythtv-live-id",
|
renatofilho@754
|
223 |
"Change MythTV version",
|
renatofilho@754
|
224 |
0, 200, GST_GMYTHTV_ID_NUM, G_PARAM_READWRITE));
|
renatofilho@608
|
225 |
|
renatofilho@754
|
226 |
g_object_class_install_property
|
renatofilho@754
|
227 |
(gobject_class, PROP_GMYTHTV_LIVE_CHAINID,
|
renatofilho@754
|
228 |
g_param_spec_string("mythtv-live-chainid", "mythtv-live-chainid",
|
renatofilho@754
|
229 |
"Sets the MythTV chain ID (from TV Chain)",
|
renatofilho@754
|
230 |
"", G_PARAM_READWRITE));
|
renatofilho@608
|
231 |
|
renatofilho@754
|
232 |
g_object_class_install_property
|
renatofilho@754
|
233 |
(gobject_class, PROP_GMYTHTV_LIVE,
|
renatofilho@754
|
234 |
g_param_spec_boolean("mythtv-live", "mythtv-live",
|
renatofilho@754
|
235 |
"Enable MythTV Live TV content streaming",
|
renatofilho@754
|
236 |
FALSE, G_PARAM_READWRITE));
|
renatofilho@608
|
237 |
|
renatofilho@754
|
238 |
g_object_class_install_property
|
renatofilho@754
|
239 |
(gobject_class, PROP_GMYTHTV_ENABLE_TIMING_POSITION,
|
renatofilho@754
|
240 |
g_param_spec_boolean("mythtv-enable-timing-position",
|
renatofilho@754
|
241 |
"mythtv-enable-timing-position",
|
renatofilho@754
|
242 |
"Enable MythTV Live TV content size continuous updating",
|
renatofilho@754
|
243 |
FALSE, G_PARAM_READWRITE));
|
renatofilho@608
|
244 |
|
renatofilho@754
|
245 |
g_object_class_install_property
|
renatofilho@754
|
246 |
(gobject_class, PROP_GMYTHTV_CHANNEL_NUM,
|
renatofilho@754
|
247 |
g_param_spec_string("mythtv-channel", "mythtv-channel",
|
renatofilho@754
|
248 |
"Change MythTV channel number",
|
renatofilho@754
|
249 |
"", G_PARAM_READWRITE));
|
renatofilho@608
|
250 |
|
renatofilho@754
|
251 |
gstbasesrc_class->start = gst_mythtv_src_start;
|
renatofilho@754
|
252 |
gstbasesrc_class->stop = gst_mythtv_src_stop;
|
renatofilho@754
|
253 |
gstbasesrc_class->get_size = gst_mythtv_src_get_size;
|
renatofilho@754
|
254 |
gstbasesrc_class->is_seekable = gst_mythtv_src_is_seekable;
|
renatofilho@754
|
255 |
gstbasesrc_class->do_seek = gst_mythtv_src_do_seek;
|
renatofilho@754
|
256 |
gstpushsrc_class->create = gst_mythtv_src_create;
|
renatofilho@608
|
257 |
|
renatofilho@754
|
258 |
GST_DEBUG_CATEGORY_INIT(mythtvsrc_debug, "mythtvsrc", 0,
|
renatofilho@754
|
259 |
"MythTV Client Source");
|
renatofilho@608
|
260 |
}
|
renatofilho@608
|
261 |
|
renatofilho@608
|
262 |
static void
|
renatofilho@751
|
263 |
gst_mythtv_src_init(GstMythtvSrc * this, GstMythtvSrcClass * g_class)
|
renatofilho@608
|
264 |
{
|
renatofilho@754
|
265 |
this->file = NULL;
|
renatofilho@754
|
266 |
this->unique_setup = FALSE;
|
renatofilho@754
|
267 |
this->mythtv_version = GMYTHTV_VERSION_DEFAULT;
|
renatofilho@754
|
268 |
this->state = GST_MYTHTV_SRC_FILE_TRANSFER;
|
renatofilho@754
|
269 |
this->bytes_read = 0;
|
renatofilho@754
|
270 |
this->prev_content_size = 0;
|
renatofilho@754
|
271 |
this->content_size = 0;
|
renatofilho@754
|
272 |
this->read_offset = 0;
|
renatofilho@754
|
273 |
this->content_size_last = 0;
|
renatofilho@754
|
274 |
this->live_tv = FALSE;
|
renatofilho@754
|
275 |
this->enable_timing_position = FALSE;
|
renatofilho@754
|
276 |
this->update_prog_chain = FALSE;
|
renatofilho@754
|
277 |
this->user_agent = g_strdup("mythtvsrc");
|
renatofilho@754
|
278 |
this->update_prog_chain = FALSE;
|
renatofilho@754
|
279 |
this->channel_name = NULL;
|
renatofilho@754
|
280 |
this->eos = FALSE;
|
renatofilho@754
|
281 |
this->wait_to_transfer = 0;
|
renatofilho@754
|
282 |
gst_base_src_set_format(GST_BASE_SRC(this), GST_FORMAT_BYTES);
|
renatofilho@754
|
283 |
gst_pad_set_event_function(GST_BASE_SRC_PAD(GST_BASE_SRC(this)),
|
renatofilho@754
|
284 |
gst_mythtv_src_handle_event);
|
renatofilho@754
|
285 |
gst_pad_set_query_function(GST_BASE_SRC_PAD(GST_BASE_SRC(this)),
|
renatofilho@754
|
286 |
gst_mythtv_src_handle_query);
|
renatofilho@608
|
287 |
|
renatofilho@608
|
288 |
}
|
renatofilho@608
|
289 |
|
renatofilho@608
|
290 |
static void
|
renatofilho@751
|
291 |
gst_mythtv_src_clear(GstMythtvSrc * mythtv_src)
|
renatofilho@608
|
292 |
{
|
renatofilho@754
|
293 |
mythtv_src->unique_setup = FALSE;
|
renatofilho@608
|
294 |
|
renatofilho@754
|
295 |
if (mythtv_src->spawn_livetv) {
|
renatofilho@754
|
296 |
g_object_unref(mythtv_src->spawn_livetv);
|
renatofilho@754
|
297 |
mythtv_src->spawn_livetv = NULL;
|
renatofilho@754
|
298 |
}
|
renatofilho@608
|
299 |
|
renatofilho@754
|
300 |
if (mythtv_src->file) {
|
renatofilho@754
|
301 |
g_object_unref(mythtv_src->file);
|
renatofilho@754
|
302 |
mythtv_src->file = NULL;
|
renatofilho@754
|
303 |
}
|
renatofilho@608
|
304 |
|
renatofilho@754
|
305 |
if (mythtv_src->backend_info) {
|
renatofilho@754
|
306 |
g_object_unref(mythtv_src->backend_info);
|
renatofilho@754
|
307 |
mythtv_src->backend_info = NULL;
|
renatofilho@754
|
308 |
}
|
renatofilho@608
|
309 |
}
|
renatofilho@608
|
310 |
|
renatofilho@608
|
311 |
static void
|
renatofilho@751
|
312 |
gst_mythtv_src_finalize(GObject * gobject)
|
renatofilho@608
|
313 |
{
|
renatofilho@754
|
314 |
GstMythtvSrc *this = GST_MYTHTV_SRC(gobject);
|
renatofilho@608
|
315 |
|
renatofilho@754
|
316 |
gst_mythtv_src_clear(this);
|
renatofilho@608
|
317 |
|
renatofilho@754
|
318 |
if (this->uri_name) {
|
renatofilho@754
|
319 |
g_free(this->uri_name);
|
renatofilho@754
|
320 |
this->uri_name = NULL;
|
renatofilho@754
|
321 |
}
|
renatofilho@608
|
322 |
|
renatofilho@754
|
323 |
if (this->user_agent) {
|
renatofilho@754
|
324 |
g_free(this->user_agent);
|
renatofilho@754
|
325 |
this->user_agent = NULL;
|
renatofilho@754
|
326 |
}
|
renatofilho@608
|
327 |
|
renatofilho@754
|
328 |
G_OBJECT_CLASS(parent_class)->finalize(gobject);
|
renatofilho@608
|
329 |
}
|
renatofilho@608
|
330 |
|
renatofilho@758
|
331 |
static GMythFileReadResult
|
renatofilho@751
|
332 |
do_read_request_response(GstMythtvSrc * src, guint size,
|
renatofilho@754
|
333 |
GByteArray * data_ptr)
|
renatofilho@608
|
334 |
{
|
renatofilho@754
|
335 |
gint read = 0;
|
renatofilho@754
|
336 |
guint sizetoread = size;
|
renatofilho@754
|
337 |
gint max_iters = GMYTHTV_TRANSFER_MAX_RESENDS;
|
renatofilho@754
|
338 |
GMythFileReadResult result;
|
renatofilho@608
|
339 |
|
renatofilho@754
|
340 |
GST_LOG_OBJECT(src, "Starting: Reading %d bytes...", sizetoread);
|
renatofilho@608
|
341 |
|
renatofilho@754
|
342 |
/*
|
renatofilho@754
|
343 |
* Loop sending the Myth File Transfer request: Retry whilst
|
renatofilho@754
|
344 |
* authentication fails and we supply it.
|
renatofilho@754
|
345 |
*/
|
renatofilho@608
|
346 |
|
renatofilho@754
|
347 |
while (sizetoread == size && --max_iters > 0) {
|
renatofilho@754
|
348 |
/*
|
renatofilho@754
|
349 |
* if ( gmyth_backend_info_is_local_file(src->backend_info) )
|
renatofilho@754
|
350 |
*/
|
renatofilho@754
|
351 |
if (IS_GMYTH_FILE_LOCAL(src->file))
|
renatofilho@754
|
352 |
result = gmyth_file_local_read(GMYTH_FILE_LOCAL(src->file),
|
renatofilho@754
|
353 |
data_ptr, sizetoread,
|
renatofilho@754
|
354 |
src->live_tv);
|
renatofilho@754
|
355 |
else if (IS_GMYTH_FILE_TRANSFER(src->file))
|
renatofilho@754
|
356 |
result =
|
renatofilho@754
|
357 |
gmyth_file_transfer_read(GMYTH_FILE_TRANSFER(src->file),
|
renatofilho@754
|
358 |
data_ptr, sizetoread,
|
renatofilho@754
|
359 |
src->live_tv);
|
renatofilho@608
|
360 |
|
renatofilho@754
|
361 |
if (data_ptr->len > 0) {
|
renatofilho@754
|
362 |
read += data_ptr->len;
|
renatofilho@754
|
363 |
sizetoread -= data_ptr->len;
|
renatofilho@754
|
364 |
} else if (data_ptr->len <= 0) {
|
renatofilho@754
|
365 |
if (src->live_tv == FALSE) {
|
renatofilho@754
|
366 |
result = GMYTH_FILE_READ_EOF;
|
renatofilho@754
|
367 |
goto eos;
|
renatofilho@754
|
368 |
} else {
|
renatofilho@754
|
369 |
if (result == GMYTH_FILE_READ_ERROR) { /* -314 */
|
renatofilho@754
|
370 |
GST_INFO_OBJECT(src,
|
renatofilho@754
|
371 |
"[LiveTV] FileTransfer READ_ERROR!");
|
renatofilho@754
|
372 |
}
|
renatofilho@754
|
373 |
goto done;
|
renatofilho@754
|
374 |
}
|
renatofilho@754
|
375 |
}
|
renatofilho@754
|
376 |
/*
|
renatofilho@754
|
377 |
* else if (data_ptr->len == 0) goto done;
|
renatofilho@754
|
378 |
*/
|
renatofilho@754
|
379 |
if (read == sizetoread)
|
renatofilho@754
|
380 |
goto done;
|
renatofilho@754
|
381 |
}
|
renatofilho@608
|
382 |
|
renatofilho@754
|
383 |
if ((read < 0 && !src->live_tv) || max_iters == 0) {
|
renatofilho@754
|
384 |
result = GMYTH_FILE_READ_EOF;
|
renatofilho@754
|
385 |
goto eos;
|
renatofilho@754
|
386 |
}
|
renatofilho@608
|
387 |
|
renatofilho@754
|
388 |
goto done;
|
renatofilho@608
|
389 |
|
renatofilho@754
|
390 |
eos:
|
renatofilho@754
|
391 |
src->eos = TRUE;
|
renatofilho@608
|
392 |
|
renatofilho@754
|
393 |
done:
|
renatofilho@754
|
394 |
return result;
|
renatofilho@608
|
395 |
}
|
renatofilho@608
|
396 |
|
renatofilho@758
|
397 |
static GstFlowReturn
|
renatofilho@751
|
398 |
gst_mythtv_src_create(GstPushSrc * psrc, GstBuffer ** outbuf)
|
renatofilho@608
|
399 |
{
|
renatofilho@822
|
400 |
GstMythtvSrc *src;
|
renatofilho@754
|
401 |
GstFlowReturn ret = GST_FLOW_OK;
|
renatofilho@822
|
402 |
GByteArray *buffer;
|
renatofilho@822
|
403 |
gint buffer_remain = 0;
|
renatofilho@822
|
404 |
GMythFileReadResult result = GMYTH_FILE_READ_OK;
|
renatofilho@822
|
405 |
gboolean buffering = FALSE;
|
renatofilho@608
|
406 |
|
renatofilho@754
|
407 |
src = GST_MYTHTV_SRC(psrc);
|
renatofilho@608
|
408 |
|
renatofilho@822
|
409 |
buffer = g_byte_array_new ();
|
renatofilho@822
|
410 |
result = do_read_request_response(src, READ_SIZE, buffer);
|
renatofilho@822
|
411 |
if (result == GMYTH_FILE_READ_ERROR)
|
renatofilho@822
|
412 |
goto read_error;
|
renatofilho@608
|
413 |
|
renatofilho@608
|
414 |
|
renatofilho@754
|
415 |
*outbuf = gst_buffer_new();
|
renatofilho@822
|
416 |
GST_BUFFER_SIZE(*outbuf) = buffer->len;
|
renatofilho@754
|
417 |
GST_BUFFER_MALLOCDATA(*outbuf) = g_malloc0(GST_BUFFER_SIZE(*outbuf));
|
renatofilho@754
|
418 |
GST_BUFFER_DATA(*outbuf) = GST_BUFFER_MALLOCDATA(*outbuf);
|
renatofilho@822
|
419 |
g_memmove(GST_BUFFER_DATA((*outbuf)), buffer->data,
|
renatofilho@754
|
420 |
GST_BUFFER_SIZE(*outbuf));
|
renatofilho@754
|
421 |
GST_BUFFER_OFFSET(*outbuf) = src->read_offset;
|
renatofilho@754
|
422 |
GST_BUFFER_OFFSET_END(*outbuf) =
|
renatofilho@754
|
423 |
src->read_offset + GST_BUFFER_SIZE(*outbuf);
|
renatofilho@608
|
424 |
|
renatofilho@754
|
425 |
src->read_offset += GST_BUFFER_SIZE(*outbuf);
|
renatofilho@754
|
426 |
src->bytes_read += GST_BUFFER_SIZE(*outbuf);
|
renatofilho@608
|
427 |
|
renatofilho@822
|
428 |
g_byte_array_free (buffer, TRUE);
|
renatofilho@608
|
429 |
|
renatofilho@822
|
430 |
if (result == GMYTH_FILE_READ_NEXT_PROG_CHAIN) {
|
renatofilho@822
|
431 |
GstPad *peer;
|
renatofilho@608
|
432 |
|
renatofilho@822
|
433 |
peer = gst_pad_get_peer (GST_BASE_SRC_PAD (GST_BASE_SRC (psrc)));
|
renatofilho@822
|
434 |
gst_pad_send_event (peer,
|
renatofilho@822
|
435 |
gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_BYTES, 0, -1, 0));
|
renatofilho@608
|
436 |
|
renatofilho@822
|
437 |
gst_object_unref (peer);
|
renatofilho@754
|
438 |
}
|
renatofilho@608
|
439 |
|
renatofilho@822
|
440 |
if (src->eos ||
|
renatofilho@822
|
441 |
(!src->live_tv && (src->bytes_read >= src->content_size)))
|
renatofilho@822
|
442 |
ret = GST_FLOW_UNEXPECTED;
|
renatofilho@822
|
443 |
|
renatofilho@822
|
444 |
return ret;
|
renatofilho@822
|
445 |
|
renatofilho@822
|
446 |
read_error:
|
renatofilho@822
|
447 |
GST_ELEMENT_ERROR(src, RESOURCE, READ,
|
renatofilho@822
|
448 |
(NULL), ("Could not read any bytes (%i, %s)",
|
renatofilho@822
|
449 |
read, src->uri_name));
|
renatofilho@822
|
450 |
return GST_FLOW_ERROR;
|
renatofilho@608
|
451 |
}
|
renatofilho@608
|
452 |
|
renatofilho@608
|
453 |
gint64
|
renatofilho@751
|
454 |
gst_mythtv_src_get_position(GstMythtvSrc * src)
|
renatofilho@608
|
455 |
{
|
renatofilho@608
|
456 |
|
renatofilho@754
|
457 |
gint64 size_tmp = 0;
|
renatofilho@754
|
458 |
guint max_tries = 2;
|
renatofilho@608
|
459 |
|
renatofilho@754
|
460 |
if (src->live_tv == TRUE && (abs(src->content_size - src->bytes_read) <
|
renatofilho@754
|
461 |
GMYTHTV_TRANSFER_MAX_BUFFER)) {
|
renatofilho@608
|
462 |
|
renatofilho@754
|
463 |
get_file_pos:
|
renatofilho@754
|
464 |
g_usleep(10);
|
renatofilho@754
|
465 |
size_tmp =
|
renatofilho@754
|
466 |
gmyth_recorder_get_file_position(src->spawn_livetv->recorder);
|
renatofilho@754
|
467 |
if (size_tmp > (src->content_size + GMYTHTV_TRANSFER_MAX_BUFFER))
|
renatofilho@754
|
468 |
src->content_size = size_tmp;
|
renatofilho@754
|
469 |
else if (size_tmp > 0 && --max_tries > 0)
|
renatofilho@754
|
470 |
goto get_file_pos;
|
renatofilho@754
|
471 |
GST_LOG_OBJECT(src, "GET_POSITION: file_position = %lld",
|
renatofilho@754
|
472 |
size_tmp);
|
renatofilho@754
|
473 |
/*
|
renatofilho@754
|
474 |
* sets the last content size amount before it can be updated
|
renatofilho@754
|
475 |
*/
|
renatofilho@754
|
476 |
src->prev_content_size = src->content_size;
|
renatofilho@754
|
477 |
}
|
renatofilho@608
|
478 |
|
renatofilho@754
|
479 |
return src->content_size;
|
renatofilho@608
|
480 |
|
renatofilho@608
|
481 |
}
|
renatofilho@608
|
482 |
|
renatofilho@758
|
483 |
static gboolean
|
renatofilho@751
|
484 |
gst_mythtv_src_do_seek(GstBaseSrc * base, GstSegment * segment)
|
renatofilho@608
|
485 |
{
|
renatofilho@754
|
486 |
GstMythtvSrc *src = GST_MYTHTV_SRC(base);
|
renatofilho@754
|
487 |
gint64 new_offset = -1;
|
renatofilho@754
|
488 |
gint64 actual_seek = segment->start;
|
renatofilho@754
|
489 |
gboolean ret = TRUE;
|
renatofilho@608
|
490 |
|
renatofilho@754
|
491 |
GST_LOG_OBJECT(src, "seek, segment: %" GST_SEGMENT_FORMAT, segment);
|
renatofilho@608
|
492 |
|
renatofilho@754
|
493 |
if (segment->format == GST_FORMAT_TIME) {
|
renatofilho@754
|
494 |
goto done;
|
renatofilho@754
|
495 |
}
|
renatofilho@754
|
496 |
GST_LOG_OBJECT(src,
|
renatofilho@754
|
497 |
"Trying to seek at the value (actual_seek = %lld, read_offset = %lld)",
|
renatofilho@754
|
498 |
actual_seek, src->read_offset);
|
renatofilho@754
|
499 |
/*
|
renatofilho@754
|
500 |
* verify if it needs to seek
|
renatofilho@754
|
501 |
*/
|
renatofilho@754
|
502 |
if (src->read_offset != actual_seek) {
|
renatofilho@608
|
503 |
|
renatofilho@754
|
504 |
/*
|
renatofilho@754
|
505 |
* if ( gmyth_backend_info_is_local_file(src->backend_info) )
|
renatofilho@754
|
506 |
*/
|
renatofilho@754
|
507 |
if (IS_GMYTH_FILE_LOCAL(src->file))
|
renatofilho@754
|
508 |
new_offset =
|
renatofilho@754
|
509 |
gmyth_file_local_seek(GMYTH_FILE_LOCAL(src->file),
|
renatofilho@754
|
510 |
segment->start, G_SEEK_SET);
|
renatofilho@754
|
511 |
else if (IS_GMYTH_FILE_TRANSFER(src->file))
|
renatofilho@754
|
512 |
new_offset =
|
renatofilho@754
|
513 |
gmyth_file_transfer_seek(GMYTH_FILE_TRANSFER(src->file),
|
renatofilho@754
|
514 |
segment->start, SEEK_SET);
|
renatofilho@608
|
515 |
|
renatofilho@754
|
516 |
GST_LOG_OBJECT(src,
|
renatofilho@754
|
517 |
"Segment offset start = %lld, SRC Offset = %lld, NEW actual backend SEEK Offset = %lld.",
|
renatofilho@754
|
518 |
segment->start, src->read_offset, new_offset);
|
renatofilho@754
|
519 |
if (G_UNLIKELY(new_offset < 0)) {
|
renatofilho@754
|
520 |
ret = FALSE;
|
renatofilho@754
|
521 |
if (!src->live_tv)
|
renatofilho@754
|
522 |
goto eos;
|
renatofilho@754
|
523 |
}
|
renatofilho@608
|
524 |
|
renatofilho@754
|
525 |
src->read_offset = new_offset;
|
renatofilho@608
|
526 |
|
renatofilho@754
|
527 |
if (ret == FALSE) {
|
renatofilho@754
|
528 |
GST_INFO_OBJECT(src, "Failed to set the SEEK on segment!");
|
renatofilho@754
|
529 |
}
|
renatofilho@751
|
530 |
|
renatofilho@754
|
531 |
}
|
renatofilho@608
|
532 |
|
renatofilho@754
|
533 |
done:
|
renatofilho@754
|
534 |
return ret;
|
renatofilho@608
|
535 |
|
renatofilho@754
|
536 |
eos:
|
renatofilho@754
|
537 |
{
|
renatofilho@754
|
538 |
GST_DEBUG_OBJECT(src, "EOS found on seeking!!!");
|
renatofilho@754
|
539 |
return FALSE;
|
renatofilho@754
|
540 |
}
|
renatofilho@608
|
541 |
|
renatofilho@608
|
542 |
}
|
renatofilho@608
|
543 |
|
renatofilho@754
|
544 |
/*
|
renatofilho@754
|
545 |
* create a socket for connecting to remote server
|
renatofilho@754
|
546 |
*/
|
renatofilho@758
|
547 |
static gboolean
|
renatofilho@751
|
548 |
gst_mythtv_src_start(GstBaseSrc * bsrc)
|
renatofilho@608
|
549 |
{
|
renatofilho@754
|
550 |
GstMythtvSrc *src = GST_MYTHTV_SRC(bsrc);
|
renatofilho@608
|
551 |
|
renatofilho@754
|
552 |
GString *chain_id_local = NULL;
|
renatofilho@754
|
553 |
GMythURI *gmyth_uri = NULL;
|
renatofilho@754
|
554 |
gboolean ret = TRUE;
|
renatofilho@754
|
555 |
GstMessage *msg;
|
renatofilho@608
|
556 |
|
renatofilho@754
|
557 |
if (src->unique_setup == FALSE) {
|
renatofilho@754
|
558 |
src->unique_setup = TRUE;
|
renatofilho@754
|
559 |
} else {
|
renatofilho@754
|
560 |
goto done;
|
renatofilho@754
|
561 |
}
|
renatofilho@679
|
562 |
|
renatofilho@754
|
563 |
gmyth_uri = gmyth_uri_new_with_value(src->uri_name);
|
renatofilho@754
|
564 |
src->backend_info = gmyth_backend_info_new_with_uri(src->uri_name);
|
renatofilho@754
|
565 |
src->live_tv = gmyth_uri_is_livetv(gmyth_uri);
|
renatofilho@822
|
566 |
|
renatofilho@754
|
567 |
if (src->live_tv) {
|
renatofilho@754
|
568 |
src->spawn_livetv = gmyth_livetv_new(src->backend_info);
|
renatofilho@822
|
569 |
gchar *ch = gmyth_uri_get_channel_name(gmyth_uri);
|
renatofilho@754
|
570 |
if (ch != NULL)
|
renatofilho@754
|
571 |
src->channel_name = ch;
|
renatofilho@608
|
572 |
|
renatofilho@754
|
573 |
if (src->channel_name != NULL) {
|
renatofilho@754
|
574 |
gboolean result;
|
renatofilho@754
|
575 |
result =
|
renatofilho@754
|
576 |
gmyth_livetv_channel_name_setup(src->spawn_livetv,
|
renatofilho@754
|
577 |
src->channel_name);
|
renatofilho@754
|
578 |
if (result == FALSE) {
|
renatofilho@754
|
579 |
GST_INFO_OBJECT(src, "LiveTV setup felt down on error");
|
renatofilho@754
|
580 |
ret = FALSE;
|
renatofilho@754
|
581 |
goto init_failed;
|
renatofilho@754
|
582 |
}
|
renatofilho@608
|
583 |
|
renatofilho@754
|
584 |
} else {
|
renatofilho@754
|
585 |
if (gmyth_livetv_setup(src->spawn_livetv) == FALSE) {
|
renatofilho@754
|
586 |
GST_INFO_OBJECT(src, "LiveTV setup felt down on error");
|
renatofilho@754
|
587 |
ret = FALSE;
|
renatofilho@754
|
588 |
goto init_failed;
|
renatofilho@754
|
589 |
}
|
renatofilho@754
|
590 |
}
|
renatofilho@608
|
591 |
|
renatofilho@754
|
592 |
/*
|
renatofilho@754
|
593 |
* testing change channel...
|
renatofilho@754
|
594 |
*/
|
renatofilho@754
|
595 |
/*
|
renatofilho@754
|
596 |
* gmyth_recorder_change_channel( src->spawn_livetv->recorder,
|
renatofilho@754
|
597 |
* CHANNEL_DIRECTION_UP );
|
renatofilho@754
|
598 |
*/
|
renatofilho@751
|
599 |
|
renatofilho@754
|
600 |
src->file =
|
renatofilho@754
|
601 |
GMYTH_FILE(gmyth_livetv_create_file_transfer
|
renatofilho@754
|
602 |
(src->spawn_livetv));
|
renatofilho@751
|
603 |
|
renatofilho@822
|
604 |
|
renatofilho@754
|
605 |
if (NULL == src->file) {
|
renatofilho@754
|
606 |
GST_INFO_OBJECT(src, "[LiveTV] FileTransfer equals to NULL");
|
renatofilho@754
|
607 |
ret = FALSE;
|
renatofilho@754
|
608 |
goto init_failed;
|
renatofilho@754
|
609 |
}
|
renatofilho@608
|
610 |
|
renatofilho@754
|
611 |
/*
|
renatofilho@754
|
612 |
* Check if the file is local to this specific client renderer
|
renatofilho@754
|
613 |
*/
|
renatofilho@754
|
614 |
if (gmyth_uri_is_local_file(gmyth_uri))
|
renatofilho@754
|
615 |
ret = gmyth_file_local_open(GMYTH_FILE_LOCAL(src->file));
|
renatofilho@754
|
616 |
else
|
renatofilho@754
|
617 |
ret =
|
renatofilho@754
|
618 |
gmyth_file_transfer_open(GMYTH_FILE_TRANSFER(src->file),
|
renatofilho@754
|
619 |
src->spawn_livetv->uri !=
|
renatofilho@754
|
620 |
NULL ? gmyth_uri_get_path(src->
|
renatofilho@754
|
621 |
spawn_livetv->
|
renatofilho@754
|
622 |
uri) :
|
renatofilho@754
|
623 |
src->spawn_livetv->proginfo->
|
renatofilho@754
|
624 |
pathname->str);
|
renatofilho@608
|
625 |
|
renatofilho@754
|
626 |
/*
|
renatofilho@754
|
627 |
* sets the mythtvsrc "location" property
|
renatofilho@754
|
628 |
*/
|
renatofilho@754
|
629 |
g_object_set(src, "location", gmyth_file_get_uri(src->file), NULL);
|
renatofilho@608
|
630 |
|
renatofilho@754
|
631 |
if (!ret) {
|
renatofilho@754
|
632 |
GST_INFO_OBJECT(src,
|
renatofilho@754
|
633 |
"Error: couldn't open the FileTransfer from LiveTV source!");
|
renatofilho@754
|
634 |
g_object_unref(src->file);
|
renatofilho@754
|
635 |
src->file = NULL;
|
renatofilho@754
|
636 |
goto init_failed;
|
renatofilho@754
|
637 |
}
|
renatofilho@754
|
638 |
} else {
|
renatofilho@751
|
639 |
|
renatofilho@754
|
640 |
/*
|
renatofilho@754
|
641 |
* Check if the file is local to this specific client renderer,
|
renatofilho@754
|
642 |
* and tries to open a local connection
|
renatofilho@754
|
643 |
*/
|
renatofilho@754
|
644 |
if (gmyth_uri_is_local_file(gmyth_uri)) {
|
renatofilho@754
|
645 |
src->file =
|
renatofilho@754
|
646 |
GMYTH_FILE(gmyth_file_local_new(src->backend_info));
|
renatofilho@754
|
647 |
ret = gmyth_file_local_open(GMYTH_FILE_LOCAL(src->file));
|
renatofilho@754
|
648 |
} else {
|
renatofilho@754
|
649 |
src->file =
|
renatofilho@754
|
650 |
GMYTH_FILE(gmyth_file_transfer_new(src->backend_info));
|
renatofilho@754
|
651 |
ret =
|
renatofilho@754
|
652 |
gmyth_file_transfer_open(GMYTH_FILE_TRANSFER(src->file),
|
renatofilho@754
|
653 |
src->uri_name);
|
renatofilho@754
|
654 |
}
|
renatofilho@751
|
655 |
|
renatofilho@754
|
656 |
} /* if (else) - recorded FileTransfer */
|
renatofilho@751
|
657 |
|
renatofilho@754
|
658 |
if (NULL == src->file) {
|
renatofilho@754
|
659 |
GST_INFO_OBJECT(src, "FileTransfer is NULL");
|
renatofilho@754
|
660 |
goto init_failed;
|
renatofilho@754
|
661 |
}
|
renatofilho@754
|
662 |
/*
|
renatofilho@754
|
663 |
* GST_INFO_OBJECT( src, "uri = %s", src->spawn_livetv->file);
|
renatofilho@754
|
664 |
*/
|
renatofilho@751
|
665 |
|
renatofilho@754
|
666 |
if (ret == FALSE) {
|
renatofilho@812
|
667 |
GST_INFO_OBJECT(src,
|
renatofilho@812
|
668 |
"MythTV FileTransfer request failed when setting up socket connection!");
|
renatofilho@812
|
669 |
goto begin_req_failed;
|
renatofilho@754
|
670 |
}
|
renatofilho@608
|
671 |
|
renatofilho@754
|
672 |
GST_INFO_OBJECT(src,
|
renatofilho@754
|
673 |
"MythTV FileTransfer filesize = %lld, content_size = %lld!",
|
renatofilho@754
|
674 |
gmyth_file_get_filesize(src->file), src->content_size);
|
renatofilho@608
|
675 |
|
renatofilho@754
|
676 |
src->content_size = gmyth_file_get_filesize(src->file);
|
renatofilho@608
|
677 |
|
renatofilho@754
|
678 |
msg =
|
renatofilho@754
|
679 |
gst_message_new_duration(GST_OBJECT(src), GST_FORMAT_BYTES,
|
renatofilho@754
|
680 |
src->content_size);
|
renatofilho@754
|
681 |
gst_element_post_message(GST_ELEMENT(src), msg);
|
renatofilho@674
|
682 |
|
renatofilho@674
|
683 |
|
renatofilho@754
|
684 |
src->do_start = FALSE;
|
renatofilho@608
|
685 |
|
renatofilho@754
|
686 |
gst_pad_push_event(GST_BASE_SRC_PAD(GST_BASE_SRC(src)),
|
renatofilho@754
|
687 |
gst_event_new_new_segment(TRUE, 1.0,
|
renatofilho@754
|
688 |
GST_FORMAT_TIME, 0,
|
renatofilho@754
|
689 |
src->content_size, 0));
|
renatofilho@608
|
690 |
|
renatofilho@754
|
691 |
done:
|
renatofilho@754
|
692 |
if (gmyth_uri != NULL) {
|
renatofilho@754
|
693 |
g_object_unref(gmyth_uri);
|
renatofilho@754
|
694 |
gmyth_uri = NULL;
|
renatofilho@754
|
695 |
}
|
renatofilho@608
|
696 |
|
renatofilho@754
|
697 |
if (chain_id_local != NULL) {
|
renatofilho@754
|
698 |
g_string_free(chain_id_local, TRUE);
|
renatofilho@754
|
699 |
chain_id_local = NULL;
|
renatofilho@754
|
700 |
}
|
renatofilho@608
|
701 |
|
renatofilho@754
|
702 |
return TRUE;
|
renatofilho@679
|
703 |
|
renatofilho@754
|
704 |
/*
|
renatofilho@754
|
705 |
* ERRORS
|
renatofilho@754
|
706 |
*/
|
renatofilho@754
|
707 |
init_failed:
|
renatofilho@754
|
708 |
if (gmyth_uri != NULL) {
|
renatofilho@754
|
709 |
g_object_unref(gmyth_uri);
|
renatofilho@754
|
710 |
gmyth_uri = NULL;
|
renatofilho@754
|
711 |
}
|
renatofilho@608
|
712 |
|
renatofilho@754
|
713 |
if (src->spawn_livetv != NULL) {
|
renatofilho@754
|
714 |
g_object_unref(src->spawn_livetv);
|
renatofilho@754
|
715 |
src->spawn_livetv = NULL;
|
renatofilho@754
|
716 |
}
|
renatofilho@751
|
717 |
|
renatofilho@754
|
718 |
GST_ELEMENT_ERROR(src, LIBRARY, INIT,
|
renatofilho@754
|
719 |
(NULL),
|
renatofilho@754
|
720 |
("Could not initialize MythTV library (%i, %s)", ret,
|
renatofilho@754
|
721 |
src->uri_name));
|
renatofilho@751
|
722 |
|
renatofilho@751
|
723 |
|
renatofilho@754
|
724 |
gst_mythtv_src_clear(src);
|
renatofilho@751
|
725 |
|
renatofilho@754
|
726 |
return FALSE;
|
renatofilho@754
|
727 |
begin_req_failed:
|
renatofilho@754
|
728 |
if (gmyth_uri != NULL) {
|
renatofilho@754
|
729 |
g_object_unref(gmyth_uri);
|
renatofilho@754
|
730 |
gmyth_uri = NULL;
|
renatofilho@754
|
731 |
}
|
renatofilho@751
|
732 |
|
renatofilho@754
|
733 |
GST_ELEMENT_ERROR(src, LIBRARY, INIT,
|
renatofilho@754
|
734 |
(NULL),
|
renatofilho@754
|
735 |
("Could not begin request sent to MythTV server (%i, %s)",
|
renatofilho@754
|
736 |
ret, src->uri_name));
|
renatofilho@754
|
737 |
return FALSE;
|
renatofilho@608
|
738 |
|
renatofilho@608
|
739 |
}
|
renatofilho@608
|
740 |
|
renatofilho@758
|
741 |
static gboolean
|
renatofilho@751
|
742 |
gst_mythtv_src_get_size(GstBaseSrc * bsrc, guint64 * size)
|
renatofilho@608
|
743 |
{
|
renatofilho@754
|
744 |
GstMythtvSrc *src = GST_MYTHTV_SRC(bsrc);
|
renatofilho@754
|
745 |
gboolean ret = TRUE;
|
renatofilho@608
|
746 |
|
renatofilho@754
|
747 |
GST_LOG_OBJECT(src,
|
renatofilho@754
|
748 |
"Differs from previous content size: %d (max.: %d)",
|
renatofilho@754
|
749 |
abs(src->content_size - src->prev_content_size),
|
renatofilho@754
|
750 |
GMYTHTV_TRANSFER_MAX_BUFFER);
|
renatofilho@608
|
751 |
|
renatofilho@754
|
752 |
if (src->live_tv) {
|
renatofilho@754
|
753 |
ret = FALSE;
|
renatofilho@754
|
754 |
} else if (src->live_tv && src->enable_timing_position
|
renatofilho@754
|
755 |
&& (abs(src->content_size - src->bytes_read) <
|
renatofilho@754
|
756 |
GMYTHTV_TRANSFER_MAX_BUFFER)) {
|
renatofilho@608
|
757 |
|
renatofilho@754
|
758 |
gint64 new_offset =
|
renatofilho@754
|
759 |
gmyth_recorder_get_file_position(src->spawn_livetv->recorder);
|
renatofilho@754
|
760 |
if (new_offset > 0 && new_offset > src->content_size) {
|
renatofilho@754
|
761 |
src->content_size = new_offset;
|
renatofilho@754
|
762 |
} else if (new_offset < src->content_size) {
|
renatofilho@754
|
763 |
src->update_prog_chain = TRUE;
|
renatofilho@754
|
764 |
}
|
renatofilho@608
|
765 |
|
renatofilho@754
|
766 |
}
|
renatofilho@608
|
767 |
|
renatofilho@754
|
768 |
*size = src->content_size;
|
renatofilho@754
|
769 |
GST_LOG_OBJECT(src, "Content size = %lld", src->content_size);
|
renatofilho@608
|
770 |
|
renatofilho@754
|
771 |
return ret;
|
renatofilho@608
|
772 |
|
renatofilho@608
|
773 |
}
|
renatofilho@608
|
774 |
|
renatofilho@754
|
775 |
/*
|
renatofilho@754
|
776 |
* close the socket and associated resources used both to recover from
|
renatofilho@754
|
777 |
* errors and go to NULL state
|
renatofilho@754
|
778 |
*/
|
renatofilho@758
|
779 |
static gboolean
|
renatofilho@751
|
780 |
gst_mythtv_src_stop(GstBaseSrc * bsrc)
|
renatofilho@608
|
781 |
{
|
renatofilho@754
|
782 |
GstMythtvSrc *src = GST_MYTHTV_SRC(bsrc);
|
renatofilho@608
|
783 |
|
renatofilho@754
|
784 |
gst_mythtv_src_clear(src);
|
renatofilho@754
|
785 |
return TRUE;
|
renatofilho@608
|
786 |
}
|
renatofilho@608
|
787 |
|
renatofilho@758
|
788 |
static gboolean
|
renatofilho@751
|
789 |
gst_mythtv_src_handle_event(GstPad * pad, GstEvent * event)
|
renatofilho@608
|
790 |
{
|
renatofilho@754
|
791 |
GstMythtvSrc *src = GST_MYTHTV_SRC(GST_PAD_PARENT(pad));
|
renatofilho@754
|
792 |
gint64 cont_size = 0;
|
renatofilho@758
|
793 |
gboolean ret = TRUE;
|
renatofilho@608
|
794 |
|
renatofilho@754
|
795 |
switch (GST_EVENT_TYPE(event)) {
|
renatofilho@812
|
796 |
case GST_EVENT_EOS:
|
renatofilho@754
|
797 |
if (src->live_tv) {
|
renatofilho@812
|
798 |
cont_size = gst_mythtv_src_get_position(src);
|
renatofilho@812
|
799 |
if (cont_size > src->content_size) {
|
renatofilho@812
|
800 |
src->content_size = cont_size;
|
renatofilho@812
|
801 |
src->eos = FALSE;
|
renatofilho@812
|
802 |
} else {
|
renatofilho@812
|
803 |
src->eos = TRUE;
|
renatofilho@812
|
804 |
gst_element_set_state(GST_ELEMENT(src), GST_STATE_NULL);
|
renatofilho@812
|
805 |
gst_element_set_locked_state(GST_ELEMENT(src), FALSE);
|
renatofilho@812
|
806 |
}
|
renatofilho@754
|
807 |
}
|
renatofilho@754
|
808 |
break;
|
renatofilho@754
|
809 |
default:
|
renatofilho@754
|
810 |
ret = gst_pad_event_default(pad, event);
|
renatofilho@754
|
811 |
}
|
renatofilho@608
|
812 |
|
renatofilho@758
|
813 |
GST_DEBUG_OBJECT (src, "HANDLE EVENT %d", ret);
|
renatofilho@754
|
814 |
return ret;
|
renatofilho@608
|
815 |
}
|
renatofilho@608
|
816 |
|
renatofilho@758
|
817 |
static gboolean
|
renatofilho@751
|
818 |
gst_mythtv_src_is_seekable(GstBaseSrc * push_src)
|
renatofilho@608
|
819 |
{
|
renatofilho@754
|
820 |
return TRUE;
|
renatofilho@608
|
821 |
}
|
renatofilho@608
|
822 |
|
renatofilho@758
|
823 |
static gboolean
|
renatofilho@751
|
824 |
gst_mythtv_src_handle_query(GstPad * pad, GstQuery * query)
|
renatofilho@608
|
825 |
{
|
renatofilho@754
|
826 |
gboolean res = FALSE;
|
renatofilho@754
|
827 |
GstMythtvSrc *myth = GST_MYTHTV_SRC(gst_pad_get_parent(pad));
|
renatofilho@754
|
828 |
GstFormat formt;
|
renatofilho@608
|
829 |
|
renatofilho@674
|
830 |
|
renatofilho@754
|
831 |
switch (GST_QUERY_TYPE(query)) {
|
renatofilho@812
|
832 |
case GST_QUERY_POSITION:
|
renatofilho@812
|
833 |
gst_query_parse_position(query, &formt, NULL);
|
renatofilho@812
|
834 |
if (formt == GST_FORMAT_BYTES) {
|
renatofilho@812
|
835 |
gst_query_set_position(query, formt, myth->read_offset);
|
renatofilho@812
|
836 |
GST_DEBUG_OBJECT(myth, "POS %" G_GINT64_FORMAT,
|
renatofilho@812
|
837 |
myth->read_offset);
|
renatofilho@812
|
838 |
res = TRUE;
|
renatofilho@812
|
839 |
} else if (formt == GST_FORMAT_TIME) {
|
renatofilho@812
|
840 |
res = gst_pad_query_default(pad, query);
|
renatofilho@754
|
841 |
}
|
renatofilho@812
|
842 |
break;
|
renatofilho@812
|
843 |
case GST_QUERY_DURATION:
|
renatofilho@812
|
844 |
gst_query_parse_duration(query, &formt, NULL);
|
renatofilho@812
|
845 |
if (formt == GST_FORMAT_BYTES) {
|
renatofilho@812
|
846 |
gint64 size = myth->content_size;
|
renatofilho@812
|
847 |
|
renatofilho@812
|
848 |
gst_query_set_duration(query, GST_FORMAT_BYTES, 10);
|
renatofilho@812
|
849 |
GST_DEBUG_OBJECT(myth, "SIZE %" G_GINT64_FORMAT, size);
|
renatofilho@812
|
850 |
res = TRUE;
|
renatofilho@812
|
851 |
} else if (formt == GST_FORMAT_TIME) {
|
renatofilho@812
|
852 |
res = gst_pad_query_default(pad, query);
|
renatofilho@754
|
853 |
}
|
renatofilho@812
|
854 |
break;
|
renatofilho@812
|
855 |
default:
|
renatofilho@812
|
856 |
res = gst_pad_query_default(pad, query);
|
renatofilho@812
|
857 |
break;
|
renatofilho@754
|
858 |
}
|
renatofilho@608
|
859 |
|
renatofilho@754
|
860 |
gst_object_unref(myth);
|
renatofilho@608
|
861 |
|
renatofilho@754
|
862 |
return res;
|
renatofilho@608
|
863 |
}
|
renatofilho@608
|
864 |
|
renatofilho@758
|
865 |
static GstStateChangeReturn
|
renatofilho@754
|
866 |
gst_mythtv_src_change_state(GstElement * element,
|
renatofilho@754
|
867 |
GstStateChange transition)
|
renatofilho@608
|
868 |
{
|
renatofilho@754
|
869 |
GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;
|
renatofilho@758
|
870 |
GstMythtvSrc *src = GST_MYTHTV_SRC(element);
|
renatofilho@608
|
871 |
|
renatofilho@754
|
872 |
switch (transition) {
|
renatofilho@754
|
873 |
case GST_STATE_CHANGE_NULL_TO_READY:
|
renatofilho@754
|
874 |
break;
|
renatofilho@754
|
875 |
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
renatofilho@812
|
876 |
if (!src->uri_name) {
|
renatofilho@812
|
877 |
GST_WARNING_OBJECT (src, "Invalid location");
|
renatofilho@812
|
878 |
return ret;
|
renatofilho@812
|
879 |
}
|
renatofilho@812
|
880 |
break;
|
renatofilho@754
|
881 |
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
renatofilho@812
|
882 |
if (src->live_tv) {
|
renatofilho@812
|
883 |
if (!gmyth_recorder_send_frontend_ready_command
|
renatofilho@812
|
884 |
(src->spawn_livetv->recorder))
|
renatofilho@812
|
885 |
GST_WARNING_OBJECT(src,
|
renatofilho@812
|
886 |
"Couldn't send the FRONTEND_READY message to the backend!");
|
renatofilho@812
|
887 |
else
|
renatofilho@812
|
888 |
GST_DEBUG_OBJECT(src, "FRONTEND_READY was sent to the backend");
|
renatofilho@812
|
889 |
}
|
renatofilho@812
|
890 |
break;
|
renatofilho@754
|
891 |
default:
|
renatofilho@754
|
892 |
break;
|
renatofilho@754
|
893 |
}
|
renatofilho@692
|
894 |
|
renatofilho@758
|
895 |
ret = GST_ELEMENT_CLASS(parent_class)->change_state(element, transition);
|
renatofilho@758
|
896 |
if (ret == GST_STATE_CHANGE_FAILURE) {
|
renatofilho@754
|
897 |
return ret;
|
renatofilho@758
|
898 |
}
|
renatofilho@692
|
899 |
|
renatofilho@692
|
900 |
|
renatofilho@754
|
901 |
switch (transition) {
|
renatofilho@754
|
902 |
case GST_STATE_CHANGE_READY_TO_NULL:
|
renatofilho@754
|
903 |
gst_mythtv_src_clear(src);
|
renatofilho@754
|
904 |
break;
|
renatofilho@754
|
905 |
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
renatofilho@754
|
906 |
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
renatofilho@754
|
907 |
break;
|
renatofilho@754
|
908 |
default:
|
renatofilho@754
|
909 |
break;
|
renatofilho@754
|
910 |
}
|
renatofilho@608
|
911 |
|
renatofilho@754
|
912 |
return ret;
|
renatofilho@608
|
913 |
}
|
renatofilho@608
|
914 |
|
renatofilho@608
|
915 |
static void
|
renatofilho@751
|
916 |
gst_mythtv_src_set_property(GObject * object, guint prop_id,
|
renatofilho@754
|
917 |
const GValue * value, GParamSpec * pspec)
|
renatofilho@608
|
918 |
{
|
renatofilho@754
|
919 |
GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC(object);
|
renatofilho@608
|
920 |
|
renatofilho@754
|
921 |
GST_OBJECT_LOCK(mythtvsrc);
|
renatofilho@754
|
922 |
switch (prop_id) {
|
renatofilho@812
|
923 |
case PROP_LOCATION:
|
renatofilho@812
|
924 |
if (!g_value_get_string(value)) {
|
renatofilho@812
|
925 |
GST_WARNING("location property cannot be NULL");
|
renatofilho@812
|
926 |
break;
|
renatofilho@812
|
927 |
}
|
renatofilho@608
|
928 |
|
renatofilho@812
|
929 |
if (mythtvsrc->uri_name != NULL) {
|
renatofilho@812
|
930 |
g_free(mythtvsrc->uri_name);
|
renatofilho@812
|
931 |
mythtvsrc->uri_name = NULL;
|
renatofilho@812
|
932 |
}
|
renatofilho@812
|
933 |
mythtvsrc->uri_name = g_value_dup_string(value);
|
renatofilho@812
|
934 |
break;
|
renatofilho@812
|
935 |
case PROP_GMYTHTV_VERSION:
|
renatofilho@812
|
936 |
mythtvsrc->mythtv_version = g_value_get_int(value);
|
renatofilho@812
|
937 |
break;
|
renatofilho@812
|
938 |
case PROP_GMYTHTV_LIVEID:
|
renatofilho@812
|
939 |
mythtvsrc->live_tv_id = g_value_get_int(value);
|
renatofilho@812
|
940 |
break;
|
renatofilho@812
|
941 |
case PROP_GMYTHTV_LIVE:
|
renatofilho@812
|
942 |
mythtvsrc->live_tv = g_value_get_boolean(value);
|
renatofilho@812
|
943 |
break;
|
renatofilho@812
|
944 |
case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
|
renatofilho@812
|
945 |
mythtvsrc->enable_timing_position = g_value_get_boolean(value);
|
renatofilho@812
|
946 |
break;
|
renatofilho@812
|
947 |
case PROP_GMYTHTV_LIVE_CHAINID:
|
renatofilho@812
|
948 |
if (!g_value_get_string(value)) {
|
renatofilho@812
|
949 |
GST_WARNING_OBJECT(object, "MythTV Live chainid property cannot be NULL");
|
renatofilho@812
|
950 |
break;
|
renatofilho@812
|
951 |
}
|
renatofilho@608
|
952 |
|
renatofilho@812
|
953 |
if (mythtvsrc->live_chain_id != NULL) {
|
renatofilho@812
|
954 |
g_free(mythtvsrc->live_chain_id);
|
renatofilho@812
|
955 |
mythtvsrc->live_chain_id = NULL;
|
renatofilho@812
|
956 |
}
|
renatofilho@812
|
957 |
mythtvsrc->live_chain_id = g_value_dup_string(value);
|
renatofilho@812
|
958 |
break;
|
renatofilho@812
|
959 |
case PROP_GMYTHTV_CHANNEL_NUM:
|
renatofilho@812
|
960 |
mythtvsrc->channel_name = g_value_dup_string(value);
|
renatofilho@812
|
961 |
break;
|
renatofilho@812
|
962 |
default:
|
renatofilho@754
|
963 |
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
renatofilho@754
|
964 |
break;
|
renatofilho@754
|
965 |
}
|
renatofilho@608
|
966 |
|
renatofilho@754
|
967 |
GST_OBJECT_UNLOCK(mythtvsrc);
|
renatofilho@608
|
968 |
}
|
renatofilho@608
|
969 |
|
renatofilho@608
|
970 |
static void
|
renatofilho@751
|
971 |
gst_mythtv_src_get_property(GObject * object, guint prop_id,
|
renatofilho@754
|
972 |
GValue * value, GParamSpec * pspec)
|
renatofilho@608
|
973 |
{
|
renatofilho@754
|
974 |
GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC(object);
|
renatofilho@608
|
975 |
|
renatofilho@754
|
976 |
GST_OBJECT_LOCK(mythtvsrc);
|
renatofilho@754
|
977 |
switch (prop_id) {
|
renatofilho@812
|
978 |
case PROP_LOCATION:
|
renatofilho@812
|
979 |
g_value_set_string(value, mythtvsrc->uri_name);
|
renatofilho@754
|
980 |
break;
|
renatofilho@812
|
981 |
case PROP_GMYTHTV_VERSION:
|
renatofilho@812
|
982 |
g_value_set_int(value, mythtvsrc->mythtv_version);
|
renatofilho@812
|
983 |
break;
|
renatofilho@812
|
984 |
case PROP_GMYTHTV_LIVEID:
|
renatofilho@812
|
985 |
g_value_set_int(value, mythtvsrc->live_tv_id);
|
renatofilho@812
|
986 |
break;
|
renatofilho@812
|
987 |
case PROP_GMYTHTV_LIVE:
|
renatofilho@754
|
988 |
g_value_set_boolean(value, mythtvsrc->live_tv);
|
renatofilho@754
|
989 |
break;
|
renatofilho@812
|
990 |
case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
|
renatofilho@754
|
991 |
g_value_set_boolean(value, mythtvsrc->enable_timing_position);
|
renatofilho@754
|
992 |
break;
|
renatofilho@812
|
993 |
case PROP_GMYTHTV_LIVE_CHAINID:
|
renatofilho@812
|
994 |
g_value_set_string(value, mythtvsrc->live_chain_id);
|
renatofilho@812
|
995 |
break;
|
renatofilho@812
|
996 |
case PROP_GMYTHTV_CHANNEL_NUM:
|
renatofilho@812
|
997 |
g_value_set_string(value, mythtvsrc->channel_name);
|
renatofilho@812
|
998 |
break;
|
renatofilho@754
|
999 |
default:
|
renatofilho@754
|
1000 |
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
renatofilho@754
|
1001 |
break;
|
renatofilho@754
|
1002 |
}
|
renatofilho@754
|
1003 |
GST_OBJECT_UNLOCK(mythtvsrc);
|
renatofilho@608
|
1004 |
}
|
renatofilho@608
|
1005 |
|
renatofilho@758
|
1006 |
static gboolean
|
renatofilho@751
|
1007 |
plugin_init(GstPlugin * plugin)
|
renatofilho@608
|
1008 |
{
|
renatofilho@754
|
1009 |
return gst_element_register(plugin, "mythtvsrc", GST_RANK_NONE,
|
renatofilho@754
|
1010 |
GST_TYPE_MYTHTV_SRC);
|
renatofilho@608
|
1011 |
}
|
renatofilho@608
|
1012 |
|
renatofilho@751
|
1013 |
GST_PLUGIN_DEFINE(GST_VERSION_MAJOR,
|
renatofilho@754
|
1014 |
GST_VERSION_MINOR,
|
renatofilho@754
|
1015 |
"mythtv",
|
renatofilho@754
|
1016 |
"lib MythTV src",
|
renatofilho@754
|
1017 |
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME,
|
renatofilho@754
|
1018 |
GST_PACKAGE_ORIGIN);
|
renatofilho@608
|
1019 |
|
renatofilho@608
|
1020 |
|
renatofilho@608
|
1021 |
/*** GSTURIHANDLER INTERFACE *************************************************/
|
renatofilho@758
|
1022 |
static guint
|
renatofilho@751
|
1023 |
gst_mythtv_src_uri_get_type(void)
|
renatofilho@608
|
1024 |
{
|
renatofilho@754
|
1025 |
return GST_URI_SRC;
|
renatofilho@608
|
1026 |
}
|
renatofilho@608
|
1027 |
|
renatofilho@754
|
1028 |
static gchar **
|
renatofilho@751
|
1029 |
gst_mythtv_src_uri_get_protocols(void)
|
renatofilho@608
|
1030 |
{
|
renatofilho@754
|
1031 |
static gchar *protocols[] = { "myth", "myths", NULL };
|
renatofilho@608
|
1032 |
|
renatofilho@754
|
1033 |
return protocols;
|
renatofilho@608
|
1034 |
}
|
renatofilho@608
|
1035 |
|
renatofilho@608
|
1036 |
static const gchar *
|
renatofilho@751
|
1037 |
gst_mythtv_src_uri_get_uri(GstURIHandler * handler)
|
renatofilho@608
|
1038 |
{
|
renatofilho@754
|
1039 |
GstMythtvSrc *src = GST_MYTHTV_SRC(handler);
|
renatofilho@608
|
1040 |
|
renatofilho@754
|
1041 |
return src->uri_name;
|
renatofilho@608
|
1042 |
}
|
renatofilho@608
|
1043 |
|
renatofilho@758
|
1044 |
static gboolean
|
renatofilho@751
|
1045 |
gst_mythtv_src_uri_set_uri(GstURIHandler * handler, const gchar * uri)
|
renatofilho@608
|
1046 |
{
|
renatofilho@754
|
1047 |
GstMythtvSrc *src = GST_MYTHTV_SRC(handler);
|
renatofilho@608
|
1048 |
|
renatofilho@754
|
1049 |
gchar *protocol;
|
renatofilho@608
|
1050 |
|
renatofilho@754
|
1051 |
protocol = gst_uri_get_protocol(uri);
|
renatofilho@754
|
1052 |
if ((strcmp(protocol, "myth") != 0)
|
renatofilho@754
|
1053 |
&& (strcmp(protocol, "myths") != 0)) {
|
renatofilho@754
|
1054 |
g_free(protocol);
|
renatofilho@754
|
1055 |
return FALSE;
|
renatofilho@754
|
1056 |
}
|
renatofilho@754
|
1057 |
g_free(protocol);
|
renatofilho@754
|
1058 |
g_object_set(src, "location", uri, NULL);
|
renatofilho@608
|
1059 |
|
renatofilho@754
|
1060 |
return TRUE;
|
renatofilho@608
|
1061 |
}
|
renatofilho@608
|
1062 |
|
renatofilho@608
|
1063 |
static void
|
renatofilho@751
|
1064 |
gst_mythtv_src_uri_handler_init(gpointer g_iface, gpointer iface_data)
|
renatofilho@608
|
1065 |
{
|
renatofilho@754
|
1066 |
GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
|
renatofilho@608
|
1067 |
|
renatofilho@754
|
1068 |
iface->get_type = gst_mythtv_src_uri_get_type;
|
renatofilho@754
|
1069 |
iface->get_protocols = gst_mythtv_src_uri_get_protocols;
|
renatofilho@754
|
1070 |
iface->get_uri = gst_mythtv_src_uri_get_uri;
|
renatofilho@754
|
1071 |
iface->set_uri = gst_mythtv_src_uri_set_uri;
|
renatofilho@608
|
1072 |
}
|
renatofilho@608
|
1073 |
|
renatofilho@608
|
1074 |
void
|
renatofilho@751
|
1075 |
size_header_handler(void *userdata, const char *value)
|
renatofilho@608
|
1076 |
{
|
renatofilho@754
|
1077 |
GstMythtvSrc *src = GST_MYTHTV_SRC(userdata);
|
renatofilho@608
|
1078 |
|
renatofilho@754
|
1079 |
GST_DEBUG_OBJECT(src, "content size = %lld bytes", src->content_size);
|
renatofilho@608
|
1080 |
}
|