comparison sdp.c @ 6379:0bcd6a8bc5d5 libavformat

Add RTP packetization of VP8 Patch by Josh Allmann, joshua dot allmann at gmail
author mstorsjo
date Mon, 16 Aug 2010 14:21:17 +0000
parents 3aa7765383b5
children 1f6088eaa469
comparison
equal deleted inserted replaced
6378:a5b3f5d68db6 6379:0bcd6a8bc5d5
410 "configuration=%s\r\n", 410 "configuration=%s\r\n",
411 payload_type, payload_type, 411 payload_type, payload_type,
412 c->width, c->height, pix_fmt, config); 412 c->width, c->height, pix_fmt, config);
413 break; 413 break;
414 } 414 }
415 case CODEC_ID_VP8:
416 av_strlcatf(buff, size, "a=rtpmap:%d VP8/90000\r\n",
417 payload_type);
418 break;
415 default: 419 default:
416 /* Nothing special to do here... */ 420 /* Nothing special to do here... */
417 break; 421 break;
418 } 422 }
419 423