[svn r72] Added some LiveTV performance optimizations.
1 /* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2 -*- */
3 * Copyright (C) <2006> Rosfran Borges <rosfran.borges@indt.org.br>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more
16 #ifndef __GST_MYTHTV_SRC_H__
17 #define __GST_MYTHTV_SRC_H__
20 #include <gst/base/gstpushsrc.h>
21 #include <gst/base/gstadapter.h>
24 #include <gmyth/gmyth_socket.h>
25 #include <gmyth/gmyth_file_transfer.h>
26 #include <gmyth/gmyth_livetv.h>
30 #define GST_TYPE_MYTHTV_SRC \
31 (gst_mythtv_src_get_type())
32 #define GST_MYTHTV_SRC(obj) \
33 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MYTHTV_SRC,GstMythtvSrc))
34 #define GST_MYTHTV_SRC_CLASS(klass) \
35 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MYTHTV_SRC,GstMythtvSrcClass))
36 #define GST_IS_MYTHTV_SRC(obj) \
37 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MYTHTV_SRC))
38 #define GST_IS_MYTHTV_SRC_CLASS(klass) \
39 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MYTHTV_SRC))
41 typedef struct _GstMythtvSrc GstMythtvSrc;
42 typedef struct _GstMythtvSrcClass GstMythtvSrcClass;
46 GST_MYTHTV_SRC_FILE_TRANSFER,
47 GST_MYTHTV_SRC_NEXT_PROGRAM_CHAIN,
48 GST_MYTHTV_SRC_INVALID_DATA
51 struct _GstMythtvSrc {
54 /* MythFileTransfer */
55 GMythFileTransfer *file_transfer;
57 GMythLiveTV *spawn_livetv;
70 gint64 prev_content_size;
72 gint64 content_size_last;
83 gboolean unique_setup;
87 gboolean enable_timing_position;
95 /* MythTV capabilities */
103 /* enable Myth TV debug messages */
104 gboolean mythtv_msgs_dbg;
106 gboolean update_prog_chain;
109 struct _GstMythtvSrcClass {
110 GstBaseSrcClass parent_class;
113 GType gst_mythtv_src_get_type (void);
117 #endif /* __GST_MYTHTV_SRC_H__ */