Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
abf74a11
Commit
abf74a11
authored
Dec 11, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpdec: Get rid of a useless _s suffix on a struct name
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
7941159d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
rtpdec.h
libavformat/rtpdec.h
+3
-3
No files found.
libavformat/rtpdec.h
View file @
abf74a11
...
...
@@ -28,7 +28,7 @@
#include "url.h"
typedef
struct
PayloadContext
PayloadContext
;
typedef
struct
RTPDynamicProtocolHandler
_s
RTPDynamicProtocolHandler
;
typedef
struct
RTPDynamicProtocolHandler
RTPDynamicProtocolHandler
;
#define RTP_MIN_PACKET_LENGTH 12
#define RTP_MAX_PACKET_LENGTH 1500
...
...
@@ -108,7 +108,7 @@ typedef int (*DynamicPayloadPacketHandlerProc) (AVFormatContext *ctx,
const
uint8_t
*
buf
,
int
len
,
int
flags
);
struct
RTPDynamicProtocolHandler
_s
{
struct
RTPDynamicProtocolHandler
{
const
char
enc_name
[
50
];
enum
AVMediaType
codec_type
;
enum
AVCodecID
codec_id
;
...
...
@@ -126,7 +126,7 @@ struct RTPDynamicProtocolHandler_s {
void
(
*
free
)(
PayloadContext
*
protocol_data
);
///< free any data needed by the rtp parsing for this dynamic data.
DynamicPayloadPacketHandlerProc
parse_packet
;
///< parse handler for this dynamic packet.
struct
RTPDynamicProtocolHandler
_s
*
next
;
struct
RTPDynamicProtocolHandler
*
next
;
};
typedef
struct
RTPPacket
{
...
...
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