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