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