77 lines
2.2 KiB
C
77 lines
2.2 KiB
C
/*
|
|
* tvheadend, subscription functions
|
|
* Copyright (C) 2007 Andreas Öman
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef SUBSCRIPTIONS_H
|
|
#define SUBSCRIPTIONS_H
|
|
|
|
#define SUBSCRIPTION_RAW_MPEGTS 0x1
|
|
|
|
typedef struct th_subscription {
|
|
LIST_ENTRY(th_subscription) ths_global_link;
|
|
int ths_weight;
|
|
|
|
LIST_ENTRY(th_subscription) ths_channel_link;
|
|
struct channel *ths_channel; /* May be NULL if channel has been
|
|
destroyed during the
|
|
subscription */
|
|
|
|
LIST_ENTRY(th_subscription) ths_transport_link;
|
|
struct th_transport *ths_transport; /* if NULL, ths_transport_link
|
|
is not linked */
|
|
|
|
char *ths_title; /* display title */
|
|
time_t ths_start; /* time when subscription started */
|
|
int ths_total_err; /* total errors during entire subscription */
|
|
|
|
streaming_target_t ths_input;
|
|
|
|
streaming_target_t *ths_output;
|
|
|
|
int ths_flags;
|
|
|
|
} th_subscription_t;
|
|
|
|
|
|
/**
|
|
* Prototypes
|
|
*/
|
|
void subscription_unsubscribe(th_subscription_t *s);
|
|
|
|
void subscription_set_weight(th_subscription_t *s, unsigned int weight);
|
|
|
|
th_subscription_t *subscription_create_from_channel(channel_t *ch,
|
|
unsigned int weight,
|
|
const char *name,
|
|
streaming_target_t *st,
|
|
int flags);
|
|
|
|
|
|
th_subscription_t *subscription_create_from_transport(th_transport_t *t,
|
|
const char *name,
|
|
streaming_target_t *st,
|
|
int flags);
|
|
|
|
void subscription_stop(th_subscription_t *s);
|
|
|
|
void subscription_unlink_transport(th_subscription_t *s);
|
|
|
|
void subscription_dummy_join(const char *id);
|
|
|
|
int subscriptions_active(void);
|
|
|
|
#endif /* SUBSCRIPTIONS_H */
|