Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Samonenko <shreddingwork@gmail.com>2012-09-22 14:32:37 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-09-23 16:08:48 +0400
commitb024c41e1e915e810d4760254622bcc5c0612c6d (patch)
treed6b3a480f2d386efbb3082785ab8a1fef1b07722 /libavformat/sdp.c
parentfecfdf6e72bd29c90f6b98d5dbca631469b374ec (diff)
Add initial support for speex RTP packetization (RFC 5574)
* libspeex audio codec is no longer considered unsupported when using rtp as output format. * SDP rtpmap is added for speex payload, formatted according to RFC Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r--libavformat/sdp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c
index 9d7dc0be0d..8ff4325817 100644
--- a/libavformat/sdp.c
+++ b/libavformat/sdp.c
@@ -567,6 +567,10 @@ static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c,
payload_type, c->sample_rate,
payload_type, c->block_align == 38 ? 20 : 30);
break;
+ case AV_CODEC_ID_SPEEX:
+ av_strlcatf(buff, size, "a=rtpmap:%d speex/%d\r\n",
+ payload_type, c->sample_rate);
+
default:
/* Nothing special to do here... */
break;