gst-plugins-mythtv/src/gstmythtvsrc.h
author rosfran
Wed Nov 15 14:37:59 2006 +0000 (2006-11-15)
branchtrunk
changeset 86 ac9a990a5733
parent 70 4ba74b706853
child 90 f6a9705509a1
permissions -rwxr-xr-x
[svn r87] Minor fix on reading function.
leo_sobral@2
     1
/* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2 -*- */
leo_sobral@2
     2
/* GStreamer
leo_sobral@2
     3
 * Copyright (C) <2006> Rosfran Borges <rosfran.borges@indt.org.br>
leo_sobral@2
     4
 *
leo_sobral@2
     5
 * This library is free software; you can redistribute it and/or
leo_sobral@2
     6
 * modify it under the terms of the GNU Library General Public
leo_sobral@2
     7
 * License as published by the Free Software Foundation; either
leo_sobral@2
     8
 * version 2 of the License, or (at your option) any later version.
leo_sobral@2
     9
 *
leo_sobral@2
    10
 * This library is distributed in the hope that it will be useful,
leo_sobral@2
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
leo_sobral@2
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
leo_sobral@2
    13
 * Library General Public License for more 
leo_sobral@2
    14
 */
leo_sobral@2
    15
leo_sobral@2
    16
#ifndef __GST_MYTHTV_SRC_H__
leo_sobral@2
    17
#define __GST_MYTHTV_SRC_H__
leo_sobral@2
    18
leo_sobral@2
    19
#include <gst/gst.h>
leo_sobral@2
    20
#include <gst/base/gstpushsrc.h>
rosfran@70
    21
#include <gst/base/gstadapter.h>
leo_sobral@2
    22
#include <stdio.h>
leo_sobral@2
    23
leo_sobral@2
    24
#include <gmyth/gmyth_socket.h>
rosfran@52
    25
#include <gmyth/gmyth_file_transfer.h>
rosfran@52
    26
#include <gmyth/gmyth_livetv.h>
leo_sobral@2
    27
leo_sobral@2
    28
G_BEGIN_DECLS
leo_sobral@2
    29
leo_sobral@2
    30
#define GST_TYPE_MYTHTV_SRC \
leo_sobral@2
    31
  (gst_mythtv_src_get_type())
leo_sobral@2
    32
#define GST_MYTHTV_SRC(obj) \
leo_sobral@2
    33
  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MYTHTV_SRC,GstMythtvSrc))
leo_sobral@2
    34
#define GST_MYTHTV_SRC_CLASS(klass) \
leo_sobral@2
    35
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MYTHTV_SRC,GstMythtvSrcClass))
leo_sobral@2
    36
#define GST_IS_MYTHTV_SRC(obj) \
leo_sobral@2
    37
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MYTHTV_SRC))
leo_sobral@2
    38
#define GST_IS_MYTHTV_SRC_CLASS(klass) \
leo_sobral@2
    39
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MYTHTV_SRC))
leo_sobral@2
    40
leo_sobral@2
    41
typedef struct _GstMythtvSrc GstMythtvSrc;
leo_sobral@2
    42
typedef struct _GstMythtvSrcClass GstMythtvSrcClass;
leo_sobral@2
    43
rosfran@81
    44
typedef enum { 
rosfran@70
    45
  GST_MYTHTV_SRC_FILE_TRANSFER,
rosfran@70
    46
  GST_MYTHTV_SRC_NEXT_PROGRAM_CHAIN,
rosfran@70
    47
  GST_MYTHTV_SRC_INVALID_DATA
rosfran@70
    48
} GstMythtvState;
rosfran@70
    49
leo_sobral@2
    50
struct _GstMythtvSrc {
rosfran@81
    51
  GstPushSrc element;
leo_sobral@2
    52
leo_sobral@2
    53
  /* MythFileTransfer */
rosfran@40
    54
  GMythFileTransfer *file_transfer;
leo_sobral@2
    55
rosfran@40
    56
  GMythLiveTV *spawn_livetv;
rosfran@70
    57
  
rosfran@70
    58
  GstMythtvState state;
leo_sobral@2
    59
leo_sobral@2
    60
  gchar *uri_name;
leo_sobral@2
    61
  gchar *user_agent;
leo_sobral@2
    62
leo_sobral@2
    63
  gchar *live_chain_id;
leo_sobral@2
    64
  
leo_sobral@2
    65
  gint mythtv_version;
leo_sobral@2
    66
rosfran@52
    67
  gint64 content_size;
leo_sobral@2
    68
rosfran@63
    69
  gint64 prev_content_size;
rosfran@63
    70
rosfran@61
    71
  gint64 content_size_last;
rosfran@61
    72
leo_sobral@2
    73
  guint64 bytes_read;
leo_sobral@2
    74
rosfran@52
    75
  gint64 read_offset;
rosfran@81
    76
  gint64 adapter_offset;
leo_sobral@2
    77
leo_sobral@2
    78
  gboolean eos;
leo_sobral@2
    79
  
leo_sobral@2
    80
  gboolean do_start;
leo_sobral@2
    81
leo_sobral@2
    82
  gboolean unique_setup;
leo_sobral@2
    83
leo_sobral@2
    84
  gboolean live_tv;
rosfran@52
    85
  
rosfran@52
    86
  gboolean enable_timing_position;
leo_sobral@2
    87
leo_sobral@2
    88
  gint live_tv_id;
rosfran@70
    89
  
rosfran@81
    90
  gint channel_num;  
rosfran@70
    91
  
rosfran@70
    92
  guint mode;
leo_sobral@2
    93
leo_sobral@2
    94
  /* MythTV capabilities */
leo_sobral@2
    95
  GstCaps *mythtv_caps;
rosfran@70
    96
  
rosfran@70
    97
  GstPad *sinkpad;
rosfran@70
    98
  GstPad *srcpad;
rosfran@70
    99
  
rosfran@81
   100
  GstTask *th_read_ahead;
rosfran@81
   101
  
rosfran@81
   102
	GStaticRecMutex *th_mutex;
rosfran@81
   103
  
rosfran@70
   104
  GstAdapter *adapter;
leo_sobral@2
   105
leo_sobral@2
   106
  /* enable Myth TV debug messages */
leo_sobral@2
   107
  gboolean mythtv_msgs_dbg;
rosfran@40
   108
rosfran@40
   109
  gboolean update_prog_chain;
leo_sobral@2
   110
};
leo_sobral@2
   111
leo_sobral@2
   112
struct _GstMythtvSrcClass {
rosfran@81
   113
  GstPushSrcClass parent_class;
leo_sobral@2
   114
};
leo_sobral@2
   115
leo_sobral@2
   116
GType gst_mythtv_src_get_type (void);
leo_sobral@2
   117
leo_sobral@2
   118
G_END_DECLS
leo_sobral@2
   119
leo_sobral@2
   120
#endif /* __GST_MYTHTV_SRC_H__ */