Commit abf74a11 authored by Martin Storsjö's avatar Martin Storsjö

rtpdec: Get rid of a useless _s suffix on a struct name

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 7941159d
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "url.h" #include "url.h"
typedef struct PayloadContext PayloadContext; typedef struct PayloadContext PayloadContext;
typedef struct RTPDynamicProtocolHandler_s RTPDynamicProtocolHandler; typedef struct RTPDynamicProtocolHandler RTPDynamicProtocolHandler;
#define RTP_MIN_PACKET_LENGTH 12 #define RTP_MIN_PACKET_LENGTH 12
#define RTP_MAX_PACKET_LENGTH 1500 #define RTP_MAX_PACKET_LENGTH 1500
...@@ -108,7 +108,7 @@ typedef int (*DynamicPayloadPacketHandlerProc) (AVFormatContext *ctx, ...@@ -108,7 +108,7 @@ typedef int (*DynamicPayloadPacketHandlerProc) (AVFormatContext *ctx,
const uint8_t * buf, const uint8_t * buf,
int len, int flags); int len, int flags);
struct RTPDynamicProtocolHandler_s { struct RTPDynamicProtocolHandler {
const char enc_name[50]; const char enc_name[50];
enum AVMediaType codec_type; enum AVMediaType codec_type;
enum AVCodecID codec_id; enum AVCodecID codec_id;
...@@ -126,7 +126,7 @@ struct RTPDynamicProtocolHandler_s { ...@@ -126,7 +126,7 @@ struct RTPDynamicProtocolHandler_s {
void (*free)(PayloadContext *protocol_data); ///< free any data needed by the rtp parsing for this dynamic data. 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. DynamicPayloadPacketHandlerProc parse_packet; ///< parse handler for this dynamic packet.
struct RTPDynamicProtocolHandler_s *next; struct RTPDynamicProtocolHandler *next;
}; };
typedef struct RTPPacket { typedef struct RTPPacket {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment