diff options
author | Ryan Martell <rdm4@martellventures.com> | 2006-10-26 18:36:03 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-10-26 18:36:03 +0000 |
commit | 4934884a134418491fdcd704d80249efab16023d (patch) | |
tree | 74bd854f5f4ce9356c8ca814fc61ecadc4b23b75 /libavformat/rtp.h | |
parent | 18fd519f54bcd579107d14b80ebcc8899509d117 (diff) | |
download | ffmpeg-4934884a134418491fdcd704d80249efab16023d.tar.gz |
Add support for H264 over RTP
Patch by Ryan Martell % rdm4 A martellventures P com %
Original thread:
Date: Oct 9, 2006 4:55 PM
Subject: [Ffmpeg-devel] RTP patches & RFC
Actual committed patch:
Date: Oct 26, 2006 4:29 PM
Originally committed as revision 6798 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp.h')
-rw-r--r-- | libavformat/rtp.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/rtp.h b/libavformat/rtp.h index 90cc085b47..9ce6f90d49 100644 --- a/libavformat/rtp.h +++ b/libavformat/rtp.h @@ -89,13 +89,6 @@ typedef struct AVRtpPayloadType_s int audio_channels; } AVRtpPayloadType_t; -typedef struct AVRtpDynamicPayloadType_s /* payload type >= 96 */ -{ - const char enc_name[50]; /* XXX: still why 50 ? ;-) */ - enum CodecType codec_type; - enum CodecID codec_id; -} AVRtpDynamicPayloadType_t; - #if 0 typedef enum { RTCP_SR = 200, @@ -122,6 +115,4 @@ typedef enum { #endif extern AVRtpPayloadType_t AVRtpPayloadTypes[]; -extern AVRtpDynamicPayloadType_t AVRtpDynamicPayloadTypes[]; - #endif /* RTP_H */ |