diff sdp.c @ 4814:730b214077ca libavformat

Add support for H.263 video in the RTP muxer patch by Martin Storsj (martin AT martin DOT st)
author lucabe
date Tue, 07 Apr 2009 06:41:55 +0000
parents f7bc722a3a36
children bf87d9ffb3ae
line wrap: on
line diff
--- a/sdp.c	Tue Apr 07 06:37:12 2009 +0000
+++ b/sdp.c	Tue Apr 07 06:41:55 2009 +0000
@@ -177,6 +177,10 @@
                                      payload_type,
                                      payload_type, config ? config : "");
             break;
+        case CODEC_ID_H263:
+        case CODEC_ID_H263P:
+            av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type);
+            break;
         case CODEC_ID_MPEG4:
             if (c->extradata_size) {
                 config = extradata2config(c);