gst-plugins-mythtv/src/gstmythtvsrc.h
author renatofilho
Thu Nov 09 19:45:27 2006 +0000 (2006-11-09)
branchtrunk
changeset 75 761a8bbe4278
parent 63 957b55b3f630
child 81 56e39289fa96
permissions -rwxr-xr-x
[svn r76] typefind copyed from gstreamer cvs
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@70
    44
rosfran@70
    45
typedef enum {
rosfran@70
    46
  GST_MYTHTV_SRC_FILE_TRANSFER,
rosfran@70
    47
  GST_MYTHTV_SRC_NEXT_PROGRAM_CHAIN,
rosfran@70
    48
  GST_MYTHTV_SRC_INVALID_DATA
rosfran@70
    49
} GstMythtvState;
rosfran@70
    50
leo_sobral@2
    51
struct _GstMythtvSrc {
leo_sobral@2
    52
  GstBaseSrc element;
leo_sobral@2
    53
leo_sobral@2
    54
  /* MythFileTransfer */
rosfran@40
    55
  GMythFileTransfer *file_transfer;
leo_sobral@2
    56
rosfran@40
    57
  GMythLiveTV *spawn_livetv;
rosfran@70
    58
  
rosfran@70
    59
  GstMythtvState state;
leo_sobral@2
    60
leo_sobral@2
    61
  gchar *uri_name;
leo_sobral@2
    62
  gchar *user_agent;
leo_sobral@2
    63
leo_sobral@2
    64
  gchar *live_chain_id;
leo_sobral@2
    65
  
leo_sobral@2
    66
  gint mythtv_version;
leo_sobral@2
    67
rosfran@52
    68
  gint64 content_size;
leo_sobral@2
    69
rosfran@63
    70
  gint64 prev_content_size;
rosfran@63
    71
rosfran@61
    72
  gint64 content_size_last;
rosfran@61
    73
leo_sobral@2
    74
  guint64 bytes_read;
leo_sobral@2
    75
rosfran@52
    76
  gint64 read_offset;
rosfran@70
    77
  gint64 old_offset;
leo_sobral@2
    78
leo_sobral@2
    79
  gboolean eos;
leo_sobral@2
    80
  
leo_sobral@2
    81
  gboolean do_start;
leo_sobral@2
    82
leo_sobral@2
    83
  gboolean unique_setup;
leo_sobral@2
    84
leo_sobral@2
    85
  gboolean live_tv;
rosfran@52
    86
  
rosfran@52
    87
  gboolean enable_timing_position;
leo_sobral@2
    88
leo_sobral@2
    89
  gint live_tv_id;
rosfran@70
    90
  
rosfran@70
    91
  gint channel_num;
rosfran@70
    92
  
rosfran@70
    93
  guint mode;
leo_sobral@2
    94
leo_sobral@2
    95
  /* MythTV capabilities */
leo_sobral@2
    96
  GstCaps *mythtv_caps;
rosfran@70
    97
  
rosfran@70
    98
  GstPad *sinkpad;
rosfran@70
    99
  GstPad *srcpad;
rosfran@70
   100
  
rosfran@70
   101
  GstAdapter *adapter;
leo_sobral@2
   102
leo_sobral@2
   103
  /* enable Myth TV debug messages */
leo_sobral@2
   104
  gboolean mythtv_msgs_dbg;
rosfran@40
   105
rosfran@40
   106
  gboolean update_prog_chain;
leo_sobral@2
   107
};
leo_sobral@2
   108
leo_sobral@2
   109
struct _GstMythtvSrcClass {
leo_sobral@2
   110
  GstBaseSrcClass parent_class;
leo_sobral@2
   111
};
leo_sobral@2
   112
leo_sobral@2
   113
GType gst_mythtv_src_get_type (void);
leo_sobral@2
   114
leo_sobral@2
   115
G_END_DECLS
leo_sobral@2
   116
leo_sobral@2
   117
#endif /* __GST_MYTHTV_SRC_H__ */