maemo-ui/src/mmyth_tvplayer.c
author rosfran
Fri Oct 27 00:11:21 2006 +0100 (2006-10-27)
branchtrunk
changeset 57 c83c59b22fe1
parent 20 7174e23f7617
child 64 f926338c6952
permissions -rw-r--r--
[svn r58] Fixed delay on audio frames's timestamps, and refactoring the autotools usage.
renatofilho@20
     1
/**
renatofilho@20
     2
 * GMyth Library
renatofilho@20
     3
 *
renatofilho@20
     4
 * @file gmyth/mmyth_tvplayer.c
renatofilho@20
     5
 * 
renatofilho@20
     6
 * @brief <p> This component provides playback of the remote A/V using
renatofilho@20
     7
 * GStreamer.
renatofilho@20
     8
 * 
renatofilho@20
     9
 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
renatofilho@20
    10
 * @author Hallyson Luiz de Morais Melo <hallyson.melo@indt.org.br>
renatofilho@20
    11
 *
renatofilho@20
    12
 *//*
renatofilho@20
    13
 * 
renatofilho@20
    14
 * This program is free software; you can redistribute it and/or modify
renatofilho@20
    15
 * it under the terms of the GNU Lesser General Public License as published by
renatofilho@20
    16
 * the Free Software Foundation; either version 2 of the License, or
renatofilho@20
    17
 * (at your option) any later version.
renatofilho@20
    18
 *
renatofilho@20
    19
 * This program is distributed in the hope that it will be useful,
renatofilho@20
    20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@20
    21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
renatofilho@20
    22
 * GNU General Public License for more details.
renatofilho@20
    23
 *
renatofilho@20
    24
 * You should have received a copy of the GNU Lesser General Public License
renatofilho@20
    25
 * along with this program; if not, write to the Free Software
renatofilho@20
    26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
renatofilho@20
    27
 */
renatofilho@20
    28
renatofilho@20
    29
#include "mmyth_tvplayer.h"
renatofilho@20
    30
 
renatofilho@20
    31
#include <gdk/gdkx.h>
renatofilho@20
    32
renatofilho@20
    33
#include "gmyth_context.h"
renatofilho@20
    34
#include "gmyth_remote_util.h"
renatofilho@20
    35
renatofilho@20
    36
typedef struct _GstPlayerWindowStateChange
renatofilho@20
    37
{
renatofilho@20
    38
    GstElement *play;
renatofilho@20
    39
    GstState old_state, new_state;
renatofilho@20
    40
    MMythTVPlayer *tvplayer;
renatofilho@20
    41
} GstPlayerWindowStateChange;
renatofilho@20
    42
renatofilho@20
    43
typedef struct _GstPlayerWindowTagFound
renatofilho@20
    44
{
renatofilho@20
    45
    GstElement *play;
renatofilho@20
    46
    GstTagList *taglist;
renatofilho@20
    47
    MMythTVPlayer *tvplayer;
renatofilho@20
    48
} GstPlayerWindowTagFound;
renatofilho@20
    49
renatofilho@20
    50
/*
renatofilho@20
    51
static gboolean idle_state (gpointer data);
renatofilho@20
    52
*/
renatofilho@20
    53
static gboolean bus_call (GstBus * bus, GstMessage * msg, gpointer data);
renatofilho@20
    54
renatofilho@20
    55
static void mmyth_tvplayer_class_init          (MMythTVPlayerClass *klass);
renatofilho@20
    56
static void mmyth_tvplayer_init                (MMythTVPlayer *object);
renatofilho@20
    57
renatofilho@20
    58
static void mmyth_tvplayer_dispose  (GObject *object);
renatofilho@20
    59
static void mmyth_tvplayer_finalize (GObject *object);
renatofilho@20
    60
renatofilho@20
    61
G_DEFINE_TYPE(MMythTVPlayer, mmyth_tvplayer, G_TYPE_OBJECT)
renatofilho@20
    62
renatofilho@20
    63
static gboolean mmyth_tvplayer_create_pipeline (MMythTVPlayer* tvplayer);
renatofilho@20
    64
static void     new_pad_cb (GstElement *element, 
renatofilho@20
    65
                            GstPad *pad, gpointer data);
renatofilho@20
    66
renatofilho@20
    67
static gboolean expose_cb (GtkWidget * widget, 
renatofilho@20
    68
                           GdkEventExpose * event, 
renatofilho@20
    69
                           gpointer user_data);
renatofilho@20
    70
renatofilho@20
    71
static void
renatofilho@20
    72
mmyth_tvplayer_class_init (MMythTVPlayerClass *klass)
renatofilho@20
    73
{
renatofilho@20
    74
	GObjectClass *gobject_class;
renatofilho@20
    75
renatofilho@20
    76
    gobject_class = (GObjectClass *) klass;
renatofilho@20
    77
	
renatofilho@20
    78
    gobject_class->dispose  = mmyth_tvplayer_dispose;
renatofilho@20
    79
    gobject_class->finalize = mmyth_tvplayer_finalize;	
renatofilho@20
    80
}
renatofilho@20
    81
renatofilho@20
    82
static void
renatofilho@20
    83
new_pad_cb (GstElement *element, GstPad *pad, gpointer data)
renatofilho@20
    84
{
renatofilho@20
    85
	MMythTVPlayer *tvplayer = MMYTH_TVPLAYER (data);
renatofilho@20
    86
	GstPadLinkReturn ret;
renatofilho@20
    87
	char *s;
renatofilho@20
    88
	
renatofilho@20
    89
	s = gst_caps_to_string (pad->caps);
renatofilho@20
    90
renatofilho@20
    91
	if ( s[0] == 'a') {
renatofilho@20
    92
		ret = gst_pad_link (pad, gst_element_get_pad (tvplayer->audioqueue, "sink"));
renatofilho@20
    93
	} else {
renatofilho@20
    94
		ret = gst_pad_link (pad, gst_element_get_pad (tvplayer->videoqueue, "sink")); 
renatofilho@20
    95
	}
renatofilho@20
    96
	
renatofilho@20
    97
	g_free(s);
renatofilho@20
    98
}
renatofilho@20
    99
renatofilho@20
   100
static gboolean
renatofilho@20
   101
expose_cb (GtkWidget * widget, GdkEventExpose * event, gpointer user_data)
renatofilho@20
   102
{
renatofilho@20
   103
    MMythTVPlayer *tvplayer = MMYTH_TVPLAYER (user_data);
renatofilho@20
   104
renatofilho@20
   105
	if (tvplayer && tvplayer->videow) {
renatofilho@20
   106
	    gst_x_overlay_set_xwindow_id (GST_X_OVERLAY (tvplayer->gst_videosink),
renatofilho@20
   107
                                  GDK_WINDOW_XWINDOW (widget->window));
renatofilho@20
   108
		return TRUE;
renatofilho@20
   109
	}
renatofilho@20
   110
	
renatofilho@20
   111
	g_warning ("MMythTVPlayer expose called before setting video window\n");
renatofilho@20
   112
	
renatofilho@20
   113
    return FALSE;
renatofilho@20
   114
}
renatofilho@20
   115
renatofilho@20
   116
static void
renatofilho@20
   117
mmyth_tvplayer_init (MMythTVPlayer *tvplayer)
renatofilho@20
   118
{
renatofilho@20
   119
    tvplayer->gst_pipeline = NULL;
renatofilho@20
   120
    tvplayer->gst_source = NULL;
renatofilho@20
   121
    tvplayer->gst_videodec = NULL;
renatofilho@20
   122
    tvplayer->gst_videosink = NULL;
renatofilho@20
   123
    tvplayer->videoqueue = NULL;
renatofilho@20
   124
    tvplayer->audioqueue = NULL;
renatofilho@20
   125
    
renatofilho@20
   126
    /* GTKWidget for rendering the video */
renatofilho@20
   127
    tvplayer->videow = NULL;
renatofilho@20
   128
	tvplayer->expose_handler = 0;
renatofilho@20
   129
	    
renatofilho@20
   130
	tvplayer->backend_hostname = NULL;
renatofilho@20
   131
	tvplayer->backend_port = 0;
renatofilho@20
   132
	tvplayer->local_hostname = NULL;
renatofilho@20
   133
renatofilho@20
   134
	tvplayer->remote_encoder = NULL;
renatofilho@20
   135
	tvplayer->tvchain = NULL;
renatofilho@20
   136
	tvplayer->proginfo = NULL;
renatofilho@20
   137
}
renatofilho@20
   138
renatofilho@20
   139
static void
renatofilho@20
   140
mmyth_tvplayer_dispose (GObject *object)
renatofilho@20
   141
{
renatofilho@20
   142
renatofilho@20
   143
	G_OBJECT_CLASS (mmyth_tvplayer_parent_class)->dispose (object);
renatofilho@20
   144
}
renatofilho@20
   145
renatofilho@20
   146
static void
renatofilho@20
   147
mmyth_tvplayer_finalize (GObject *object)
renatofilho@20
   148
{
renatofilho@20
   149
	g_signal_handlers_destroy (object);
renatofilho@20
   150
renatofilho@20
   151
	MMythTVPlayer *tvplayer = MMYTH_TVPLAYER (object);
renatofilho@20
   152
renatofilho@20
   153
	g_debug ("[%s] Finalizing tvplayer", __FUNCTION__);
renatofilho@20
   154
	
renatofilho@20
   155
	if (tvplayer->videow != NULL) {
renatofilho@20
   156
		if (g_signal_handler_is_connected (tvplayer->videow, 
renatofilho@20
   157
						tvplayer->expose_handler)) {
renatofilho@20
   158
			g_signal_handler_disconnect (tvplayer->videow,
renatofilho@20
   159
				tvplayer->expose_handler);
renatofilho@20
   160
		}
renatofilho@20
   161
		g_object_unref (tvplayer->videow);
renatofilho@20
   162
	}
renatofilho@20
   163
	
renatofilho@20
   164
	if ( tvplayer->remote_encoder != NULL )
renatofilho@20
   165
		g_object_unref (tvplayer->remote_encoder);
renatofilho@20
   166
	if ( tvplayer->tvchain != NULL )
renatofilho@20
   167
		g_object_unref (tvplayer->tvchain);
renatofilho@20
   168
	if ( tvplayer->proginfo != NULL )
renatofilho@20
   169
		g_object_unref (tvplayer->proginfo);	
renatofilho@20
   170
renatofilho@20
   171
	// Release Gstreamer elements
renatofilho@20
   172
	if ( tvplayer->gst_pipeline != NULL )
renatofilho@20
   173
		g_object_unref (tvplayer->gst_pipeline);	
renatofilho@20
   174
	if ( tvplayer->gst_source != NULL )
renatofilho@20
   175
		g_object_unref (tvplayer->gst_source);	
renatofilho@20
   176
	if ( tvplayer->gst_videodec != NULL )
renatofilho@20
   177
		g_object_unref (tvplayer->gst_videodec);	
renatofilho@20
   178
	if ( tvplayer->gst_videosink != NULL )
renatofilho@20
   179
		g_object_unref (tvplayer->gst_videosink);	
renatofilho@20
   180
	if ( tvplayer->videoqueue != NULL )
renatofilho@20
   181
		g_object_unref (tvplayer->videoqueue);	
renatofilho@20
   182
	if ( tvplayer->audioqueue != NULL )
renatofilho@20
   183
		g_object_unref (tvplayer->audioqueue);	
renatofilho@20
   184
renatofilho@20
   185
	G_OBJECT_CLASS (mmyth_tvplayer_parent_class)->finalize (object);
renatofilho@20
   186
}
renatofilho@20
   187
renatofilho@20
   188
/** Creates a new instance of MMythTVPlayer. 
renatofilho@20
   189
 * 
renatofilho@20
   190
 * @return a new instance of MMythTVPlayer.
renatofilho@20
   191
 */
renatofilho@20
   192
MMythTVPlayer *
renatofilho@20
   193
mmyth_tvplayer_new ()
renatofilho@20
   194
{
renatofilho@20
   195
    MMythTVPlayer *tvplayer = 
renatofilho@20
   196
        MMYTH_TVPLAYER (g_object_new(MMYTH_TVPLAYER_TYPE, NULL));
renatofilho@20
   197
    
renatofilho@20
   198
    return tvplayer;
renatofilho@20
   199
}
renatofilho@20
   200
renatofilho@20
   201
/** Initializes the tv player.
renatofilho@20
   202
 *
renatofilho@20
   203
 * @param tvplayer the object instance.
renatofilho@20
   204
 * @return gboolean TRUE if the pipeline was created 
renatofilho@20
   205
 * successfully, FALSE otherwise.
renatofilho@20
   206
 */
renatofilho@20
   207
gboolean
renatofilho@20
   208
mmyth_tvplayer_initialize (MMythTVPlayer *tvplayer)
renatofilho@20
   209
{
renatofilho@20
   210
	
renatofilho@20
   211
    if (!mmyth_tvplayer_create_pipeline (tvplayer)) {
renatofilho@20
   212
    	g_warning ("[%s] Error while creating pipeline. TV Player not initialized", __FUNCTION__);
renatofilho@20
   213
		return FALSE;
renatofilho@20
   214
	} else {
renatofilho@20
   215
		g_debug ("[%s] GStreamer pipeline created", __FUNCTION__);	
renatofilho@20
   216
    }
renatofilho@20
   217
renatofilho@20
   218
	return TRUE;
renatofilho@20
   219
}
renatofilho@20
   220
renatofilho@20
   221
/** Creates the GStreamer pipeline used by the player.
renatofilho@20
   222
 *
renatofilho@20
   223
 * @param tvplayer the object instance.
renatofilho@20
   224
 * @return gboolean TRUE if the pipeline was created 
renatofilho@20
   225
 * successfully, FALSE otherwise.
renatofilho@20
   226
 */
renatofilho@20
   227
static gboolean
renatofilho@20
   228
mmyth_tvplayer_create_pipeline (MMythTVPlayer* tvplayer)
renatofilho@20
   229
{
renatofilho@20
   230
    GstElement *pipeline;
renatofilho@20
   231
    GstElement *source, *parser;
renatofilho@20
   232
    GstElement *videodec, *videosink;
renatofilho@20
   233
#ifndef MAEMO_PLATFORM    
renatofilho@20
   234
    GstElement *audiodec, *audioconv;
renatofilho@20
   235
#endif
renatofilho@20
   236
    GstElement *audiosink;
renatofilho@20
   237
    GstElement *videoqueue, *audioqueue;
renatofilho@20
   238
renatofilho@20
   239
    g_debug ("MMythTVPlayer: Setting the Gstreamer pipeline\n");
renatofilho@20
   240
	
renatofilho@20
   241
    pipeline = gst_pipeline_new ("video-player");
renatofilho@20
   242
    source = gst_element_factory_make ("mythtvsrc", "myth-source");
renatofilho@20
   243
    parser = gst_element_factory_make ("ffdemux_nuv", "nuv-demux");
renatofilho@20
   244
renatofilho@20
   245
    /* Gstreamer Video elements */
renatofilho@20
   246
    videoqueue = gst_element_factory_make ("queue", "video-queue");
renatofilho@20
   247
    videodec = gst_element_factory_make ("ffdec_mpeg4", "video-decoder");
renatofilho@20
   248
#ifdef MAEMO_PLATFORM
renatofilho@20
   249
    videosink = gst_element_factory_make ("sdlvideosink", "image-output");
renatofilho@20
   250
#else
renatofilho@20
   251
    videosink = gst_element_factory_make ("xvimagesink", "image-output");
renatofilho@20
   252
#endif
renatofilho@20
   253
    
renatofilho@20
   254
    /* Gstreamer Audio elements */
renatofilho@20
   255
    audioqueue = gst_element_factory_make ("queue", "audio-queue");    
renatofilho@20
   256
#ifdef MAEMO_PLATFORM    
renatofilho@20
   257
    audiosink = gst_element_factory_make ("dspmp3sink", "audio-output");
renatofilho@20
   258
#else    
renatofilho@20
   259
    audiodec = gst_element_factory_make ("ffdec_mp3", "audio-decoder");
renatofilho@20
   260
    audioconv = gst_element_factory_make ("audioconvert", "audio-converter");
renatofilho@20
   261
    audiosink = gst_element_factory_make ("alsasink", "audio-output");
renatofilho@20
   262
#endif    
renatofilho@20
   263
    
renatofilho@20
   264
    if (!(pipeline && source && parser && videodec && videosink) ||
renatofilho@20
   265
    	!(videoqueue && audioqueue && audiosink)) {
renatofilho@20
   266
        /* FIXME: hanlde the error correctly */
renatofilho@20
   267
        /* video_alignment is not being created (below) 
renatofilho@20
   268
           and is causing problems to the ui */
renatofilho@20
   269
renatofilho@20
   270
	    tvplayer->gst_pipeline = NULL;
renatofilho@20
   271
	    tvplayer->gst_videodec = NULL;
renatofilho@20
   272
	    tvplayer->gst_videosink = NULL;
renatofilho@20
   273
           
renatofilho@20
   274
        g_warning ("GstElement creation error!\n");
renatofilho@20
   275
        return FALSE;
renatofilho@20
   276
    }
renatofilho@20
   277
renatofilho@20
   278
#ifndef MAEMO_PLATFORM    
renatofilho@20
   279
    if (!(audiodec && audioconv)) {
renatofilho@20
   280
        g_warning ("GstElement for audio stream creation error!");
renatofilho@20
   281
        return FALSE;
renatofilho@20
   282
    }
renatofilho@20
   283
#endif    
renatofilho@20
   284
    
renatofilho@20
   285
    
renatofilho@20
   286
    tvplayer->gst_pipeline = pipeline;
renatofilho@20
   287
    tvplayer->gst_source = source;
renatofilho@20
   288
    tvplayer->gst_videodec = videodec;
renatofilho@20
   289
    tvplayer->gst_videosink = videosink;
renatofilho@20
   290
    g_object_ref (tvplayer->gst_pipeline);
renatofilho@20
   291
    g_object_ref (tvplayer->gst_source);
renatofilho@20
   292
    g_object_ref (tvplayer->gst_videodec);
renatofilho@20
   293
    g_object_ref (tvplayer->gst_videosink);
renatofilho@20
   294
renatofilho@20
   295
    tvplayer->videoqueue = videoqueue;
renatofilho@20
   296
    tvplayer->audioqueue = audioqueue;
renatofilho@20
   297
    g_object_ref (tvplayer->videoqueue);
renatofilho@20
   298
    g_object_ref (tvplayer->audioqueue);
renatofilho@20
   299
   	
renatofilho@20
   300
    g_object_set (G_OBJECT (videosink), "sync", TRUE, NULL);
renatofilho@20
   301
    g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
renatofilho@20
   302
renatofilho@20
   303
    gst_bus_add_watch (gst_pipeline_get_bus (GST_PIPELINE (tvplayer->gst_pipeline)),
renatofilho@20
   304
                       bus_call, tvplayer);
renatofilho@20
   305
renatofilho@20
   306
    gst_bin_add_many (GST_BIN (pipeline), source, parser, videoqueue,
renatofilho@20
   307
    			videodec, videosink, audioqueue, audiodec, audioconv, audiosink, NULL);
renatofilho@20
   308
renatofilho@20
   309
    {
renatofilho@20
   310
//        GstCaps *rtpcaps = gst_caps_new_simple ("application/x-rtp", NULL);
renatofilho@20
   311
//        gst_element_link_filtered(source, parser, rtpcaps);
renatofilho@20
   312
    }
renatofilho@20
   313
    
renatofilho@20
   314
    gst_element_link (source, parser);
renatofilho@20
   315
    gst_element_link_many (videoqueue, videodec, videosink, NULL);
renatofilho@20
   316
    gst_element_link_many (audioqueue, audiodec, audioconv, audiosink, NULL);
renatofilho@20
   317
    
renatofilho@20
   318
    g_signal_connect (parser, "pad-added", G_CALLBACK (new_pad_cb), tvplayer);
renatofilho@20
   319
    
renatofilho@20
   320
    return TRUE;
renatofilho@20
   321
}
renatofilho@20
   322
renatofilho@20
   323
/** Configures the backend and the tv player 
renatofilho@20
   324
 * for playing the recorded content A/V.
renatofilho@20
   325
 *
renatofilho@20
   326
 * FIXME: Change filename to program info or other structure about the recorded
renatofilho@20
   327
 *
renatofilho@20
   328
 * @param tvplayer the object instance.
renatofilho@20
   329
 * @param filename the file uri of the recorded content to be played.
renatofilho@20
   330
 * @return TRUE if successfull, FALSE if any error happens.
renatofilho@20
   331
 */
renatofilho@20
   332
gboolean
renatofilho@20
   333
mmyth_tvplayer_record_setup (MMythTVPlayer *tvplayer, gchar *filename)
renatofilho@20
   334
{
renatofilho@20
   335
	GMythSettings *msettings = gmyth_context_get_settings();
renatofilho@20
   336
	
renatofilho@20
   337
	// FIXME: we should receive the uri instead of filename
renatofilho@20
   338
	GString *hostname = gmyth_settings_get_backend_hostname (msettings);
renatofilho@20
   339
	int port = gmyth_settings_get_backend_port(msettings);
renatofilho@20
   340
	
renatofilho@20
   341
	GString *fullpath = g_string_new ("myth://");
renatofilho@20
   342
	g_string_append_printf (fullpath, "%s:%d/%s", hostname->str, port, filename);
renatofilho@20
   343
	
renatofilho@20
   344
	tvplayer->is_livetv = FALSE;
renatofilho@20
   345
renatofilho@20
   346
	g_debug ("[%s] Setting record uri to gstreamer pipeline to %s", __FUNCTION__, fullpath->str);
renatofilho@20
   347
		
renatofilho@20
   348
    g_object_set (G_OBJECT (tvplayer->gst_source), "location",
renatofilho@20
   349
          fullpath->str, NULL);
renatofilho@20
   350
          
renatofilho@20
   351
    return TRUE;
renatofilho@20
   352
}
renatofilho@20
   353
renatofilho@20
   354
/** Configures the backend and the tv player 
renatofilho@20
   355
 * for playing the live tv.
renatofilho@20
   356
 *
renatofilho@20
   357
 * @param tvplayer the object instance.
renatofilho@20
   358
 * @return TRUE if successfull, FALSE if any error happens.
renatofilho@20
   359
 */
renatofilho@20
   360
gboolean
renatofilho@20
   361
mmyth_tvplayer_livetv_setup (MMythTVPlayer *tvplayer)
renatofilho@20
   362
{
renatofilho@20
   363
	GMythSettings *msettings = gmyth_context_get_settings ();
renatofilho@20
   364
	gboolean res = TRUE;
renatofilho@20
   365
renatofilho@20
   366
	res = gmyth_context_check_connection();
renatofilho@20
   367
	if (!res) {
renatofilho@20
   368
		g_warning ("[%s] LiveTV can not connect to backend", __FUNCTION__);	
renatofilho@20
   369
		res = FALSE;
renatofilho@20
   370
		goto error;
renatofilho@20
   371
	}
renatofilho@20
   372
renatofilho@20
   373
	tvplayer->backend_hostname = gmyth_settings_get_backend_hostname(msettings);
renatofilho@20
   374
	tvplayer->backend_port = gmyth_settings_get_backend_port (msettings);
renatofilho@20
   375
renatofilho@20
   376
	tvplayer->local_hostname  = g_string_new("");    
renatofilho@20
   377
	gmyth_context_get_local_hostname (tvplayer->local_hostname);
renatofilho@20
   378
renatofilho@20
   379
	if ( tvplayer->local_hostname == NULL ) {
renatofilho@20
   380
		res = FALSE;
renatofilho@20
   381
		goto error;
renatofilho@20
   382
	}
renatofilho@20
   383
renatofilho@20
   384
	// Gets the remote encoder num
renatofilho@20
   385
	tvplayer->remote_encoder = remote_request_next_free_recorder (-1);
renatofilho@20
   386
renatofilho@20
   387
	if ( tvplayer->remote_encoder == NULL ) {
renatofilho@20
   388
		g_warning ("[%s] None remote encoder available", __FUNCTION__);
renatofilho@20
   389
		res = FALSE;
renatofilho@20
   390
		goto error;
renatofilho@20
   391
	}
renatofilho@20
   392
renatofilho@20
   393
	// Creates livetv chain handler
renatofilho@20
   394
	tvplayer->tvchain = GMYTH_TVCHAIN ( g_object_new(GMYTH_TVCHAIN_TYPE, NULL) );
renatofilho@20
   395
	gmyth_tvchain_initialize ( tvplayer->tvchain, tvplayer->local_hostname );
renatofilho@20
   396
renatofilho@20
   397
	if ( tvplayer->tvchain == NULL || tvplayer->tvchain->tvchain_id == NULL ) {
renatofilho@20
   398
		res = FALSE;
renatofilho@20
   399
		goto error;
renatofilho@20
   400
	}
renatofilho@20
   401
renatofilho@20
   402
	// Init remote encoder. Opens its control socket.
renatofilho@20
   403
	res = gmyth_remote_encoder_setup(tvplayer->remote_encoder);
renatofilho@20
   404
	if ( !res ) {
renatofilho@20
   405
		g_warning ("[%s] Fail while setting remote encoder\n", __FUNCTION__);
renatofilho@20
   406
		res = FALSE;
renatofilho@20
   407
		goto error;
renatofilho@20
   408
	}
renatofilho@20
   409
	// Spawn live tv. Uses the socket to send mythprotocol data to start livetv in the backend (remotelly)
renatofilho@20
   410
	res = gmyth_remote_encoder_spawntv ( tvplayer->remote_encoder,
renatofilho@20
   411
			gmyth_tvchain_get_id(tvplayer->tvchain) );
renatofilho@20
   412
	if (!res) {
renatofilho@20
   413
		g_warning ("[%s] Fail while spawn tv\n", __FUNCTION__);
renatofilho@20
   414
		res = FALSE;
renatofilho@20
   415
		goto error;
renatofilho@20
   416
	}
renatofilho@20
   417
renatofilho@20
   418
	// Reload all TV chain from Mysql database.
renatofilho@20
   419
	gmyth_tvchain_reload_all (tvplayer->tvchain);
renatofilho@20
   420
renatofilho@20
   421
	if ( tvplayer->tvchain == NULL ) {
renatofilho@20
   422
		res = FALSE;
renatofilho@20
   423
		goto error;
renatofilho@20
   424
	}
renatofilho@20
   425
renatofilho@20
   426
	// Get program info from database using chanid and starttime
renatofilho@20
   427
	tvplayer->proginfo = gmyth_tvchain_get_program_at (tvplayer->tvchain, -1);
renatofilho@20
   428
	if ( tvplayer->proginfo == NULL ) {
renatofilho@20
   429
		g_warning ("[%s] LiveTV not successfully started.\n", __FUNCTION__ );
renatofilho@20
   430
		res = FALSE;
renatofilho@20
   431
		goto error;
renatofilho@20
   432
	} else {
renatofilho@20
   433
		g_debug ("[%s] MythLiveTV: All requests to backend to start TV were OK.\n", __FUNCTION__ );
renatofilho@20
   434
	}
renatofilho@20
   435
renatofilho@20
   436
	return res;
renatofilho@20
   437
renatofilho@20
   438
error:
renatofilho@20
   439
	if ( tvplayer->backend_hostname != NULL ) {
renatofilho@20
   440
		g_string_free( tvplayer->backend_hostname, TRUE );
renatofilho@20
   441
		res = FALSE;
renatofilho@20
   442
	}
renatofilho@20
   443
renatofilho@20
   444
	if ( tvplayer->local_hostname != NULL ) {
renatofilho@20
   445
		g_string_free( tvplayer->local_hostname, TRUE );
renatofilho@20
   446
		res = FALSE;
renatofilho@20
   447
	}
renatofilho@20
   448
renatofilho@20
   449
	if ( tvplayer->remote_encoder != NULL ) {
renatofilho@20
   450
		g_object_unref (tvplayer->remote_encoder);
renatofilho@20
   451
		tvplayer->remote_encoder = NULL;
renatofilho@20
   452
	}
renatofilho@20
   453
renatofilho@20
   454
	if ( tvplayer->tvchain != NULL ) {
renatofilho@20
   455
		g_object_unref (tvplayer->tvchain);
renatofilho@20
   456
		tvplayer->tvchain = NULL;
renatofilho@20
   457
	}
renatofilho@20
   458
renatofilho@20
   459
	if ( tvplayer->proginfo != NULL ) {
renatofilho@20
   460
		g_object_unref (tvplayer->proginfo);
renatofilho@20
   461
		tvplayer->proginfo = NULL;
renatofilho@20
   462
	}
renatofilho@20
   463
renatofilho@20
   464
	return res;
renatofilho@20
   465
renatofilho@20
   466
}
renatofilho@20
   467
renatofilho@20
   468
/** Sets the GTK video widget for the tv player. 
renatofilho@20
   469
 *
renatofilho@20
   470
 * @param tvplayer the object instance.
renatofilho@20
   471
 * @param videow the GTK video window.
renatofilho@20
   472
 * @return TRUE if successfull, FALSE if any error happens.
renatofilho@20
   473
 */
renatofilho@20
   474
gboolean
renatofilho@20
   475
mmyth_tvplayer_set_widget (MMythTVPlayer *tvplayer, GtkWidget *videow)
renatofilho@20
   476
{
renatofilho@20
   477
	tvplayer->videow = videow;
renatofilho@20
   478
	g_object_ref (videow);
renatofilho@20
   479
	
renatofilho@20
   480
	g_debug ("[%s] Setting widget for tv player render", __FUNCTION__);
renatofilho@20
   481
	
renatofilho@20
   482
    tvplayer->expose_handler = g_signal_connect (tvplayer->videow, "expose-event", 
renatofilho@20
   483
                                                 G_CALLBACK (expose_cb), tvplayer);
renatofilho@20
   484
renatofilho@20
   485
    //g_signal_connect(miptv_ui->videow, "size_request", G_CALLBACK(cb_preferred_video_size), miptv_ui);
renatofilho@20
   486
renatofilho@20
   487
    return TRUE;
renatofilho@20
   488
}
renatofilho@20
   489
renatofilho@20
   490
static gboolean
renatofilho@20
   491
bus_call (GstBus * bus, GstMessage * msg, gpointer data)
renatofilho@20
   492
{
renatofilho@20
   493
    //MMythTVPlayer *tvplayer = MMYTH_TVPLAYER ( data );
renatofilho@20
   494
    //GMainLoop *loop = tvplayer->loop;
renatofilho@20
   495
renatofilho@20
   496
    switch (GST_MESSAGE_TYPE (msg)) {
renatofilho@20
   497
        case GST_MESSAGE_EOS:
renatofilho@20
   498
			printf ("End of stream\n");
renatofilho@20
   499
            //g_idle_add ((GSourceFunc) idle_eos, data);
renatofilho@20
   500
            gst_element_set_state ( GST_ELEMENT (GST_MESSAGE_SRC (msg)), GST_STATE_NULL );
rosfran@25
   501
	    gst_element_set_locked_state ( GST_ELEMENT (GST_MESSAGE_SRC (msg)), TRUE );
renatofilho@20
   502
            break;
renatofilho@20
   503
        case GST_MESSAGE_ERROR:
renatofilho@20
   504
        {
renatofilho@20
   505
                gchar *debug;
renatofilho@20
   506
                GError *err;
renatofilho@20
   507
renatofilho@20
   508
                gst_message_parse_error (msg, &err, &debug);
renatofilho@20
   509
                g_free (debug);
renatofilho@20
   510
renatofilho@20
   511
                printf ("Error: %s\n", err->message);
renatofilho@20
   512
                g_error_free (err);
renatofilho@20
   513
renatofilho@20
   514
                //g_main_loop_quit (loop);
renatofilho@20
   515
        }
renatofilho@20
   516
            break;
renatofilho@20
   517
        default:
renatofilho@20
   518
            printf (gst_message_type_get_name (GST_MESSAGE_TYPE (msg)));
renatofilho@20
   519
            printf ("\n");
renatofilho@20
   520
            break;
renatofilho@20
   521
    }
renatofilho@20
   522
renatofilho@20
   523
    return TRUE;
renatofilho@20
   524
}
renatofilho@20
   525
renatofilho@20
   526
renatofilho@20
   527
#if 0
renatofilho@20
   528
static gboolean
renatofilho@20
   529
idle_state (gpointer data)
renatofilho@20
   530
{
renatofilho@20
   531
    GstPlayerWindowStateChange *st = data;
renatofilho@20
   532
renatofilho@20
   533
    if (st->old_state == GST_STATE_PLAYING) {
renatofilho@20
   534
        if (st->miptv_ui->idle_id != 0) {
renatofilho@20
   535
            g_source_remove (st->miptv_ui->idle_id);
renatofilho@20
   536
            st->miptv_ui->idle_id = 0;
renatofilho@20
   537
        }
renatofilho@20
   538
    }
renatofilho@20
   539
    else if (st->new_state == GST_STATE_PLAYING) {
renatofilho@20
   540
        if (st->miptv_ui->idle_id != 0)
renatofilho@20
   541
            g_source_remove (st->miptv_ui->idle_id);
renatofilho@20
   542
renatofilho@20
   543
        st->miptv_ui->idle_id = g_idle_add (cb_iterate, st->miptv_ui);
renatofilho@20
   544
    }
renatofilho@20
   545
renatofilho@20
   546
    /* new movie loaded? */
renatofilho@20
   547
    if (st->old_state == GST_STATE_READY && st->new_state > GST_STATE_READY) {
renatofilho@20
   548
renatofilho@20
   549
        /* gboolean have_video = FALSE; */
renatofilho@20
   550
renatofilho@20
   551
        gtk_widget_show (st->miptv_ui->videow);
renatofilho@20
   552
renatofilho@20
   553
        gtk_window_resize (GTK_WINDOW (st->miptv_ui->main_window), 1, 1);
renatofilho@20
   554
renatofilho@20
   555
    }
renatofilho@20
   556
renatofilho@20
   557
    /* discarded movie? */
renatofilho@20
   558
    if (st->old_state > GST_STATE_READY && st->new_state == GST_STATE_READY) {
renatofilho@20
   559
renatofilho@20
   560
        if (st->miptv_ui->tagcache) {
renatofilho@20
   561
            gst_tag_list_free (st->miptv_ui->tagcache);
renatofilho@20
   562
            st->miptv_ui->tagcache = NULL;
renatofilho@20
   563
        }
renatofilho@20
   564
    }
renatofilho@20
   565
renatofilho@20
   566
    gst_object_unref (GST_OBJECT (st->play));
renatofilho@20
   567
    //g_object_unref (G_OBJECT (st->win));
renatofilho@20
   568
    g_free (st);
renatofilho@20
   569
renatofilho@20
   570
    /* once */
renatofilho@20
   571
    return FALSE;
renatofilho@20
   572
}
renatofilho@20
   573
renatofilho@20
   574
#endif
renatofilho@20
   575
renatofilho@20
   576
/** Stops playing the current A/V.
renatofilho@20
   577
 *
renatofilho@20
   578
 * FIXME: How to proceed differently between livetv 
renatofilho@20
   579
 * and recorded content?
renatofilho@20
   580
 *
renatofilho@20
   581
 * @param tvplayer the object instance.
renatofilho@20
   582
 * @return void 
renatofilho@20
   583
 */
renatofilho@20
   584
void
renatofilho@20
   585
mmyth_tvplayer_stop_playing (MMythTVPlayer *tvplayer) 
renatofilho@20
   586
{
renatofilho@20
   587
    g_debug ("[%s] Setting gstreamer pipeline state to NULL", __FUNCTION__);
renatofilho@20
   588
renatofilho@20
   589
    gst_element_set_state (tvplayer->gst_pipeline, GST_STATE_NULL);
renatofilho@20
   590
    
renatofilho@20
   591
    if (tvplayer->is_livetv) {
renatofilho@20
   592
	    if (!gmyth_remote_encoder_stop_livetv (tvplayer->remote_encoder)) {
renatofilho@20
   593
	    	g_warning ("[%s] Error while stoping remote encoder", __FUNCTION__);	
renatofilho@20
   594
	    }
renatofilho@20
   595
    }
renatofilho@20
   596
}
renatofilho@20
   597
renatofilho@20
   598
/** Queries if the tvplayer is active playing A/V content.
renatofilho@20
   599
 *
renatofilho@20
   600
 * @param tvplayer the object instance.
renatofilho@20
   601
 * @return TRUE if the tvplayer is active, FALSE otherwise.
renatofilho@20
   602
 */
renatofilho@20
   603
gboolean
renatofilho@20
   604
mmyth_tvplayer_is_playing (MMythTVPlayer *tvplayer)
renatofilho@20
   605
{
renatofilho@20
   606
	return (GST_STATE (tvplayer->gst_pipeline) == GST_STATE_PLAYING);
renatofilho@20
   607
}
renatofilho@20
   608
renatofilho@20
   609
/** Static function that sets the tvplayer state to PLAYING.
renatofilho@20
   610
 *
renatofilho@20
   611
 * @param tvplayer the object instance.
renatofilho@20
   612
 * @return TRUE if the tvplayer is active, FALSE otherwise.
renatofilho@20
   613
 */
renatofilho@20
   614
static gboolean
renatofilho@20
   615
idle_play (gpointer data)
renatofilho@20
   616
{
renatofilho@20
   617
    MMythTVPlayer *tvplayer = MMYTH_TVPLAYER (data);
renatofilho@20
   618
renatofilho@20
   619
	g_debug ("MMythTVPlayer: Setting pipeline state to PLAYING\n");
renatofilho@20
   620
renatofilho@20
   621
    gst_element_set_state (tvplayer->gst_pipeline, GST_STATE_PLAYING);
renatofilho@20
   622
renatofilho@20
   623
    return FALSE;
renatofilho@20
   624
}
renatofilho@20
   625
renatofilho@20
   626
/** Start playing A/V with the tvplayer attributes.
renatofilho@20
   627
 *
renatofilho@20
   628
 * @param tvplayer the object instance.
renatofilho@20
   629
 */
renatofilho@20
   630
void
renatofilho@20
   631
mmyth_tvplayer_start_playing (MMythTVPlayer *tvplayer)
renatofilho@20
   632
{
renatofilho@20
   633
renatofilho@20
   634
	// FIXME: Move this to livetv_setup??
renatofilho@20
   635
	if (tvplayer->is_livetv) {
renatofilho@20
   636
renatofilho@20
   637
	#if 0
renatofilho@20
   638
		if (!tvplayer || !(tvplayer->proginfo) || !(tvplayer->local_hostname)
renatofilho@20
   639
				|| !(tvplayer->gst_source)) {
renatofilho@20
   640
			g_warning ("GMythtvPlayer not ready to start playing\n");		
renatofilho@20
   641
		}
renatofilho@20
   642
renatofilho@20
   643
		if (!(tvplayer->proginfo->pathname)) {
renatofilho@20
   644
			g_warning ("[%s] Playback url is null, could not play the myth content", __FUNCTION__);
renatofilho@20
   645
			return;
renatofilho@20
   646
		}
renatofilho@20
   647
renatofilho@20
   648
		g_debug ("MMythTVPlayer: Start playing %s", tvplayer->proginfo->pathname->str);
renatofilho@20
   649
#endif
renatofilho@20
   650
		g_object_set (G_OBJECT (tvplayer->gst_source), "mythtv-live",
renatofilho@20
   651
				TRUE, NULL);
renatofilho@20
   652
#if 0
renatofilho@20
   653
		if ( tvplayer->tvchain != NULL ) {
renatofilho@20
   654
			GString *str_chainid = gmyth_tvchain_get_id(tvplayer->tvchain);
renatofilho@20
   655
			g_print( "[%s]\tCHAIN ID: %s\n", __FUNCTION__, str_chainid->str );
renatofilho@20
   656
renatofilho@20
   657
			g_object_set (G_OBJECT (tvplayer->gst_source), "mythtv-live-chainid", 
renatofilho@20
   658
					g_strdup( str_chainid->str ), NULL);      
renatofilho@20
   659
			if ( str_chainid!=NULL)
renatofilho@20
   660
				g_string_free( str_chainid, FALSE );
renatofilho@20
   661
		}
renatofilho@20
   662
renatofilho@20
   663
		if ( tvplayer->remote_encoder != NULL )	
renatofilho@20
   664
			g_object_set (G_OBJECT (tvplayer->gst_source), "mythtv-live-id",
renatofilho@20
   665
					tvplayer->remote_encoder->recorder_num, NULL );
renatofilho@20
   666
		g_debug ("[%s] Setting location to %s", __FUNCTION__, 
renatofilho@20
   667
				tvplayer->proginfo->pathname->str);
renatofilho@20
   668
renatofilho@20
   669
		/* Sets the gstreamer properties acording to the service access address */
renatofilho@20
   670
		g_object_set (G_OBJECT (tvplayer->gst_source), "location",
renatofilho@20
   671
				tvplayer->proginfo->pathname->str, NULL);              
renatofilho@20
   672
#endif
renatofilho@20
   673
	}
renatofilho@20
   674
renatofilho@20
   675
	g_object_set (G_OBJECT (tvplayer->gst_source), "mythtv-version",
renatofilho@20
   676
              MYTHTV_VERSION_DEFAULT, NULL);
renatofilho@20
   677
renatofilho@20
   678
    g_object_set (G_OBJECT (tvplayer->gst_source), "mythtv-debug",
renatofilho@20
   679
              TRUE, NULL);
renatofilho@20
   680
renatofilho@20
   681
    g_idle_add (idle_play, tvplayer);
renatofilho@20
   682
renatofilho@20
   683
}
renatofilho@20
   684