gst-gmyth/mythsrc/gstmythtvsrc.h
author renatofilho
Tue May 01 16:04:02 2007 +0100 (2007-05-01)
branchtrunk
changeset 608 43ce4ea2f9fb
child 751 3cf3c6019e3b
permissions -rwxr-xr-x
[svn r614] created dir for gstreamer plugins
renatofilho@608
     1
/* GStreamer
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
#ifndef __GST_MYTHTV_SRC_H__
renatofilho@608
    21
#define __GST_MYTHTV_SRC_H__
renatofilho@608
    22
renatofilho@608
    23
#include <gst/gst.h>
renatofilho@608
    24
#include <gst/base/gstbasesrc.h>
renatofilho@608
    25
#include <gst/base/gstpushsrc.h>
renatofilho@608
    26
#include <stdio.h>
renatofilho@608
    27
renatofilho@608
    28
#include <gmyth/gmyth_socket.h>
renatofilho@608
    29
#include <gmyth/gmyth_file.h>
renatofilho@608
    30
#include <gmyth/gmyth_file_transfer.h>
renatofilho@608
    31
#include <gmyth/gmyth_file_local.h>
renatofilho@608
    32
#include <gmyth/gmyth_livetv.h>
renatofilho@608
    33
#include <gmyth/gmyth_backendinfo.h>
renatofilho@608
    34
renatofilho@608
    35
G_BEGIN_DECLS
renatofilho@608
    36
renatofilho@608
    37
#define GST_TYPE_MYTHTV_SRC \
renatofilho@608
    38
  (gst_mythtv_src_get_type())
renatofilho@608
    39
#define GST_MYTHTV_SRC(obj) \
renatofilho@608
    40
  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MYTHTV_SRC,GstMythtvSrc))
renatofilho@608
    41
#define GST_MYTHTV_SRC_CLASS(klass) \
renatofilho@608
    42
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MYTHTV_SRC,GstMythtvSrcClass))
renatofilho@608
    43
#define GST_IS_MYTHTV_SRC(obj) \
renatofilho@608
    44
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MYTHTV_SRC))
renatofilho@608
    45
#define GST_IS_MYTHTV_SRC_CLASS(klass) \
renatofilho@608
    46
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MYTHTV_SRC))
renatofilho@608
    47
renatofilho@608
    48
typedef struct _GstMythtvSrc GstMythtvSrc;
renatofilho@608
    49
typedef struct _GstMythtvSrcClass GstMythtvSrcClass;
renatofilho@608
    50
renatofilho@608
    51
typedef enum { 
renatofilho@608
    52
  GST_MYTHTV_SRC_FILE_TRANSFER,
renatofilho@608
    53
  GST_MYTHTV_SRC_NEXT_PROGRAM_CHAIN,
renatofilho@608
    54
  GST_MYTHTV_SRC_INVALID_DATA
renatofilho@608
    55
} GstMythtvState;
renatofilho@608
    56
renatofilho@608
    57
struct _GstMythtvSrc {
renatofilho@608
    58
  GstPushSrc element;
renatofilho@608
    59
renatofilho@608
    60
  /* MythFileTransfer */
renatofilho@608
    61
  GMythFile *file;
renatofilho@608
    62
renatofilho@608
    63
  GMythLiveTV *spawn_livetv;
renatofilho@608
    64
  
renatofilho@608
    65
  GMythBackendInfo *backend_info;
renatofilho@608
    66
renatofilho@608
    67
  GstMythtvState state;
renatofilho@608
    68
renatofilho@608
    69
  gchar *uri_name;
renatofilho@608
    70
  gchar *user_agent;
renatofilho@608
    71
renatofilho@608
    72
  gchar *live_chain_id;
renatofilho@608
    73
renatofilho@608
    74
  gint mythtv_version;
renatofilho@608
    75
renatofilho@608
    76
  gint64 content_size;
renatofilho@608
    77
renatofilho@608
    78
  gint64 prev_content_size;
renatofilho@608
    79
renatofilho@608
    80
  gint64 content_size_last;
renatofilho@608
    81
renatofilho@608
    82
  guint64 bytes_read;
renatofilho@608
    83
renatofilho@608
    84
  gint64 read_offset;
renatofilho@608
    85
renatofilho@608
    86
  gint buffer_remain;
renatofilho@608
    87
renatofilho@608
    88
  gboolean eos;
renatofilho@608
    89
renatofilho@608
    90
  gboolean do_start;
renatofilho@608
    91
renatofilho@608
    92
  gboolean unique_setup;
renatofilho@608
    93
renatofilho@608
    94
  gboolean live_tv;
renatofilho@608
    95
renatofilho@608
    96
  gboolean enable_timing_position;
renatofilho@608
    97
renatofilho@608
    98
  gint live_tv_id;
renatofilho@608
    99
renatofilho@608
   100
  gchar* channel_name;  
renatofilho@608
   101
renatofilho@608
   102
  guint mode;
renatofilho@608
   103
renatofilho@608
   104
  /* MythTV capabilities */
renatofilho@608
   105
  GstCaps *mythtv_caps;
renatofilho@608
   106
renatofilho@608
   107
  GByteArray *bytes_queue;
renatofilho@608
   108
renatofilho@608
   109
#ifndef GST_DISABLE_GST_DEBUG
renatofilho@608
   110
  /* enable Myth TV debug messages */
renatofilho@608
   111
  gboolean mythtv_msgs_dbg;
renatofilho@608
   112
#endif
renatofilho@608
   113
renatofilho@608
   114
  gboolean update_prog_chain;
renatofilho@608
   115
renatofilho@608
   116
  /* stablish a maximum iteration value to the IS_RECORDING message */
renatofilho@608
   117
  guint wait_to_transfer;
renatofilho@608
   118
renatofilho@608
   119
  /* max try number to get freerecorder */
renatofilho@608
   120
  gint max_try;
renatofilho@608
   121
  gint try_number;
renatofilho@608
   122
renatofilho@608
   123
};
renatofilho@608
   124
renatofilho@608
   125
struct _GstMythtvSrcClass {
renatofilho@608
   126
  GstPushSrcClass parent_class;
renatofilho@608
   127
};
renatofilho@608
   128
renatofilho@608
   129
GType gst_mythtv_src_get_type (void);
renatofilho@608
   130
renatofilho@608
   131
G_END_DECLS
renatofilho@608
   132
renatofilho@608
   133
#endif /* __GST_MYTHTV_SRC_H__ */