VLC 4.0.0-dev
Loading...
Searching...
No Matches
input.h
Go to the documentation of this file.
1/**
2 * @file input.h
3 * @brief RTP demux input shared declarations
4 */
5/*****************************************************************************
6 * Copyright © 2008 Rémi Denis-Courmont
7 * 2023 VideoLabs, VideoLAN and VLC Authors
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 ****************************************************************************/
23
24typedef struct
25{
26#ifdef HAVE_SRTP
27 struct srtp_session_t *srtp;
28#endif
32
33/* Global data */
Definition input.h:25
struct vlc_dtls * rtp_sock
Definition input.h:29
struct vlc_dtls * rtcp_sock
Definition input.h:30
State for a RTP session:
Definition session.c:40
Definition input.h:35
rtp_input_sys_t input_sys
Definition input.h:39
rtp_session_t * session
Definition input.h:37
struct vlc_logger * logger
Definition input.h:36
vlc_thread_t thread
Definition input.h:38
Definition srtp.c:59
Datagram socket.
Definition vlc_dtls.h:29
Definition messages.c:85
Thread handle.
Definition vlc_threads.h:108