]> git.sesse.net Git - vlc/blob - modules/access/rtmp/rtmp_amf_flv.h
Don't dereference strrchr without check (CID 185)
[vlc] / modules / access / rtmp / rtmp_amf_flv.h
1 /*****************************************************************************
2  * rtmp_amf_flv.h: RTMP, AMF and FLV over RTMP implementation.
3  *****************************************************************************
4  * Copyright (C) URJC - LADyR - Luis Lopez Fernandez
5  *
6  * Author: Miguel Angel Cabrera Moya
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Local prototypes (continued from access.c)
25  *****************************************************************************/
26 typedef struct rtmp_packet_t rtmp_packet_t;
27 typedef struct rtmp_body_t rtmp_body_t;
28 typedef struct rtmp_control_thread_t rtmp_control_thread_t;
29 typedef void (*rtmp_handler_t)( rtmp_control_thread_t *p_thread, rtmp_packet_t *rtmp_packet );
30
31 struct rtmp_packet_t
32 {
33     int length_header;
34     int stream_index;
35     uint32_t timestamp;
36     uint32_t timestamp_relative;
37     int32_t length_encoded;
38     int32_t length_body;
39     uint8_t content_type;
40     uint32_t src_dst;
41     rtmp_body_t *body;
42 };
43
44 struct rtmp_body_t
45 {
46     int32_t length_body; /* without interchunk headers */
47     int32_t length_buffer;
48     uint8_t *body;
49 };
50
51 struct rtmp_control_thread_t
52 {
53     VLC_COMMON_MEMBERS
54
55     int fd;
56
57     vlc_url_t url;
58     char *psz_application;
59     char *psz_media;
60
61     block_fifo_t *p_fifo_input;
62     block_fifo_t *p_empty_blocks;
63
64     vlc_mutex_t lock;
65     vlc_cond_t  wait;
66
67     int result_connect;
68         int result_publish;
69     int result_play;
70         int result_stop;
71
72     double stream_client_id;
73     double stream_server_id;
74
75     char *psz_publish;
76
77     /* Rebuild FLV variables (access) */
78     int has_audio;
79     int has_video;
80     int metadata_received;
81     uint8_t metadata_stereo;
82     uint8_t metadata_samplesize;
83     uint32_t metadata_samplerate;
84     uint8_t metadata_audiocodecid;
85     uint8_t metadata_videocodecid;
86     uint8_t metadata_frametype;
87     int first_media_packet;
88     uint32_t flv_tag_previous_tag_size;
89
90     /* Vars for rebuilding FLV (access_output) */
91     rtmp_body_t *flv_body;
92     uint8_t flv_content_type;
93     uint32_t flv_length_body;
94     uint32_t flv_timestamp;
95
96     /* vars for channel state */
97     uint32_t chunk_size_recv;
98     uint32_t chunk_size_send;
99     rtmp_packet_t rtmp_headers_recv[64]; /* RTMP_HEADER_STREAM_MAX */
100     rtmp_packet_t rtmp_headers_send[64];
101
102     rtmp_handler_t rtmp_handler[21]; /* index by RTMP_CONTENT_TYPE */
103
104     /* Pointer to base module object (later needs to casted) */
105     void *p_base_object;
106 };
107
108 struct access_sys_t
109 {
110     int active;
111
112     /* vars for reading from fifo */
113     block_t *flv_packet;
114     int read_packet;
115
116     /* thread for filtering and handling control messages */
117     rtmp_control_thread_t *p_thread;
118 };
119
120 /*****************************************************************************
121  * RTMP header:
122  ******************************************************************************/
123 int rtmp_handshake_active( vlc_object_t *p_this, int fd );
124 int rtmp_handshake_passive( vlc_object_t *p_this, int fd );
125 int rtmp_connect_active( rtmp_control_thread_t *p_thread );
126 int rtmp_connect_passive( rtmp_control_thread_t *p_thread );
127 //int rtmp_seek( access_t *p_access, int64_t i_pos ); TODO
128 //
129 rtmp_packet_t *rtmp_build_bytes_read( rtmp_control_thread_t *p_thread, uint32_t reply );
130 rtmp_packet_t *rtmp_build_publish_start( rtmp_control_thread_t *p_thread );
131 rtmp_packet_t *rtmp_build_flv_over_rtmp( rtmp_control_thread_t *p_thread, block_t *p_buffer );
132
133 rtmp_packet_t *rtmp_read_net_packet( rtmp_control_thread_t *p_thread );
134 uint8_t *rtmp_encode_packet( rtmp_control_thread_t *p_thread, rtmp_packet_t *rtmp_packet );
135 void rtmp_init_handler( rtmp_handler_t *rtmp_handler );
136 /*****************************************************************************
137  * FLV header:
138  ******************************************************************************/
139 block_t *flv_get_metadata( access_t *p_access );
140 block_t *flv_insert_header( access_t *p_access, block_t *first_packet );
141
142 /*****************************************************************************
143  * RTMP body header:
144  ******************************************************************************/
145 rtmp_body_t *rtmp_body_new( int length_buffer );
146 void rtmp_body_reset( rtmp_body_t * );