OSDN Git Service

Add minimal support for H.264 video in the SDP generator
authorLuca Abeni <lucabe72@email.it>
Mon, 21 Jan 2008 11:09:06 +0000 (11:09 +0000)
committerLuca Abeni <lucabe72@email.it>
Mon, 21 Jan 2008 11:09:06 +0000 (11:09 +0000)
Originally committed as revision 11585 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/sdp.c

index 31820b9..a9ba2e6 100644 (file)
@@ -137,6 +137,12 @@ static char *sdp_media_attributes(char *buff, int size, AVCodecContext *c, int p
     char *config = NULL;
 
     switch (c->codec_id) {
+        case CODEC_ID_H264:
+            av_strlcatf(buff, size, "a=rtpmap:%d H264/90000\r\n"
+                                    "a=fmtp:%d packetization-mode=1%s\r\n",
+                                     payload_type,
+                                     payload_type, config ? config : "");
+            break;
         case CODEC_ID_MPEG4:
             if (c->extradata_size) {
                 config = extradata2config(c);