Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
33f87566
Commit
33f87566
authored
Oct 29, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove never used RTCP code (fixes #2254)
parent
05492281
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
1377 deletions
+0
-1377
modules/mux/rtp/Modules.am
modules/mux/rtp/Modules.am
+0
-1
modules/mux/rtp/rtcp.c
modules/mux/rtp/rtcp.c
+0
-1040
modules/mux/rtp/rtcp.h
modules/mux/rtp/rtcp.h
+0
-282
modules/mux/rtp/rtp.h
modules/mux/rtp/rtp.h
+0
-54
No files found.
modules/mux/rtp/Modules.am
deleted
100644 → 0
View file @
05492281
SOURCES_rtcp = rtcp.c rtcp.h rtp.h
modules/mux/rtp/rtcp.c
deleted
100644 → 0
View file @
05492281
This diff is collapsed.
Click to expand it.
modules/mux/rtp/rtcp.h
deleted
100644 → 0
View file @
05492281
This diff is collapsed.
Click to expand it.
modules/mux/rtp/rtp.h
deleted
100644 → 0
View file @
05492281
/*****************************************************************************
* rtp.h: RTP/RTCP headerfile
*****************************************************************************
* Copyright (C) 2005 M2X
*
* $Id$
*
* Authors: Jean-Paul Saman <jpsaman #_at_# videolan dot org>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#ifndef _RTP_H
#define _RTP_H 1
#define RTP_HEADER_LEN 12
#define RTP_SEQ_NUM_SIZE 65536
/*
* See RFC 1889 & RFC 2250.
*/
typedef
struct
{
int
fd
;
/*< socket descriptor of rtp stream */
unsigned
int
u_version
;
/*< rtp version number */
unsigned
int
u_CSRC_count
;
/*< CSRC count */
unsigned
int
u_payload_type
;
/*< type of RTP payload stream */
bool
b_extension
;
/*< The header is followed by exactly one header extension */
unsigned
int
u_marker
;
/*< marker field expect 1 */
unsigned
int
u_seq_no
;
/*< sequence number of RTP stream */
uint32_t
i_timestamp
;
/*< timestamp of stream */
unsigned
int
ssrc
;
/*< stream number is used here. */
unsigned
int
u_ext_length
;
/*< lenght of extension field */
/*int (*pf_connect)( void *p_userdata, char *p_server, int i_port );
int (*pf_disconnect)( void *p_userdata );
int (*pf_read)( void *p_userdata, uint8_t *p_buffer, int i_buffer );
int (*pf_write)( void *p_userdata, uint8_t *p_buffer, int i_buffer );*/
}
rtp_t
;
#endif
/* RTP_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment