summaryrefslogtreecommitdiff
path: root/rtsp.h
blob: 703c100682a78a76d4f7f94a6fd50932329dfba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _RTSP_H
#define _RTSP_H

#include "player.h"

extern rtsp_conn_info *playing_conn;
extern rtsp_conn_info **conns;

void rtsp_listen_loop(void);
// void rtsp_shutdown_stream(void);
void rtsp_request_shutdown_stream(void);

void cancel_all_RTSP_threads(void);

// initialise and completely delete the metadata stuff

void metadata_init(void);
void metadata_stop(void);

// sends metadata out to the metadata pipe, if enabled.
// It is sent with the type 'ssnc' the given code, data and length
// The handler at the other end must know what to do with the data
// e.g. if it's malloced, to free it, etc.
// nothing is done automatically

int send_ssnc_metadata(uint32_t code, char *data, uint32_t length, int block);

#endif // _RTSP_H