You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

267 lines
8.6KB

  1. /*
  2. * copyright (c) 2007 Luca Abeni
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "avstring.h"
  21. #include "avformat.h"
  22. #include "rtp.h"
  23. #ifdef CONFIG_RTP_MUXER
  24. #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2)
  25. struct sdp_session_level {
  26. int sdp_version; /**< protocol version (currently 0) */
  27. int id; /**< session id */
  28. int version; /**< session version */
  29. int start_time; /**< session start time (NTP time, in seconds),
  30. or 0 in case of permanent session */
  31. int end_time; /**< session end time (NTP time, in seconds),
  32. or 0 if the session is not bounded */
  33. int ttl; /**< TTL, in case of multicast stream */
  34. const char *user; /**< username of the session's creator */
  35. const char *src_addr; /**< IP address of the machine from which the session was created */
  36. const char *dst_addr; /**< destination IP address (can be multicast) */
  37. const char *name; /**< session name (can be an empty string) */
  38. };
  39. static void dest_write(char *buff, int size, const char *dest_addr, int ttl)
  40. {
  41. if (dest_addr) {
  42. if (ttl > 0) {
  43. av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl);
  44. } else {
  45. av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr);
  46. }
  47. }
  48. }
  49. static void sdp_write_header(char *buff, int size, struct sdp_session_level *s)
  50. {
  51. av_strlcatf(buff, size, "v=%d\r\n"
  52. "o=- %d %d IN IPV4 %s\r\n"
  53. "t=%d %d\r\n"
  54. "s=%s\r\n"
  55. "a=tool:libavformat\r\n",
  56. s->sdp_version,
  57. s->id, s->version, s->src_addr,
  58. s->start_time, s->end_time,
  59. s->name[0] ? s->name : "No Name");
  60. dest_write(buff, size, s->dst_addr, s->ttl);
  61. }
  62. static int get_address(char *dest_addr, int size, int *ttl, const char *url)
  63. {
  64. int port;
  65. const char *p;
  66. url_split(NULL, 0, NULL, 0, dest_addr, size, &port, NULL, 0, url);
  67. *ttl = 0;
  68. p = strchr(url, '?');
  69. if (p) {
  70. char buff[64];
  71. int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p);
  72. if (is_multicast) {
  73. if (find_info_tag(buff, sizeof(buff), "ttl", p)) {
  74. *ttl = strtol(buff, NULL, 10);
  75. } else {
  76. *ttl = 5;
  77. }
  78. }
  79. }
  80. return port;
  81. }
  82. static void digit_to_char(char *dst, uint8_t src)
  83. {
  84. if (src < 10) {
  85. *dst = '0' + src;
  86. } else {
  87. *dst = 'A' + src - 10;
  88. }
  89. }
  90. static char *data_to_hex(char *buff, const uint8_t *src, int s)
  91. {
  92. int i;
  93. for(i = 0; i < s; i++) {
  94. digit_to_char(buff + 2 * i, src[i] >> 4);
  95. digit_to_char(buff + 2 * i + 1, src[i] & 0xF);
  96. }
  97. return buff;
  98. }
  99. static char *extradata2config(AVCodecContext *c)
  100. {
  101. char *config;
  102. if (c->extradata_size > MAX_EXTRADATA_SIZE) {
  103. av_log(c, AV_LOG_ERROR, "Too many extra data!\n");
  104. return NULL;
  105. }
  106. config = av_malloc(10 + c->extradata_size * 2);
  107. if (config == NULL) {
  108. av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info\n");
  109. return NULL;
  110. }
  111. memcpy(config, "; config=", 9);
  112. data_to_hex(config + 9, c->extradata, c->extradata_size);
  113. config[9 + c->extradata_size * 2] = 0;
  114. return config;
  115. }
  116. static char *sdp_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type)
  117. {
  118. char *config = NULL;
  119. switch (c->codec_id) {
  120. case CODEC_ID_MPEG4:
  121. if (c->extradata_size) {
  122. config = extradata2config(c);
  123. }
  124. av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
  125. "a=fmtp:%d profile-level-id=1%s\r\n",
  126. payload_type,
  127. payload_type, config ? config : "");
  128. break;
  129. case CODEC_ID_AAC:
  130. if (c->extradata_size) {
  131. config = extradata2config(c);
  132. } else {
  133. /* FIXME: maybe we can forge config information based on the
  134. * codec parameters...
  135. */
  136. av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported\n");
  137. return NULL;
  138. }
  139. if (config == NULL) {
  140. return NULL;
  141. }
  142. av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n"
  143. "a=fmtp:%d profile-level-id=1;"
  144. "mode=AAC-hbr;sizelength=13;indexlength=3;"
  145. "indexdeltalength=3%s\r\n",
  146. payload_type, c->sample_rate, c->channels,
  147. payload_type, config);
  148. break;
  149. case CODEC_ID_PCM_S16BE:
  150. if (payload_type >= 96)
  151. av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
  152. payload_type,
  153. c->sample_rate, c->channels);
  154. break;
  155. case CODEC_ID_PCM_MULAW:
  156. if (payload_type >= 96)
  157. av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
  158. payload_type,
  159. c->sample_rate, c->channels);
  160. break;
  161. case CODEC_ID_PCM_ALAW:
  162. if (payload_type >= 96)
  163. av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
  164. payload_type,
  165. c->sample_rate, c->channels);
  166. break;
  167. default:
  168. /* Nothing special to do, here... */
  169. break;
  170. }
  171. av_free(config);
  172. return buff;
  173. }
  174. static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl)
  175. {
  176. const char *type;
  177. int payload_type;
  178. payload_type = rtp_get_payload_type(c);
  179. if (payload_type < 0) {
  180. payload_type = 96; /* FIXME: how to assign a private pt? rtp.c is broken too */
  181. }
  182. switch (c->codec_type) {
  183. case CODEC_TYPE_VIDEO : type = "video" ; break;
  184. case CODEC_TYPE_AUDIO : type = "audio" ; break;
  185. case CODEC_TYPE_SUBTITLE: type = "text" ; break;
  186. default : type = "application"; break;
  187. }
  188. av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
  189. dest_write(buff, size, dest_addr, ttl);
  190. sdp_media_attributes(buff, size, c, payload_type);
  191. }
  192. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  193. {
  194. struct sdp_session_level s;
  195. int i, j, port, ttl;
  196. char dst[32];
  197. memset(buff, 0, size);
  198. memset(&s, 0, sizeof(struct sdp_session_level));
  199. s.user = "-";
  200. s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
  201. s.name = ac[0]->title;
  202. port = 0;
  203. ttl = 0;
  204. if (n_files == 1) {
  205. port = get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
  206. if (port > 0) {
  207. s.dst_addr = dst;
  208. s.ttl = ttl;
  209. }
  210. }
  211. sdp_write_header(buff, size, &s);
  212. dst[0] = 0;
  213. for (i = 0; i < n_files; i++) {
  214. if (n_files != 1) {
  215. port = get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
  216. }
  217. for (j = 0; j < ac[i]->nb_streams; j++) {
  218. sdp_write_media(buff, size,
  219. ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
  220. (port > 0) ? port + j * 2 : 0, ttl);
  221. if (port <= 0) {
  222. av_strlcatf(buff, size,
  223. "a=control:streamid=%d\r\n", i + j);
  224. }
  225. }
  226. }
  227. return 0;
  228. }
  229. #else
  230. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  231. {
  232. return AVERROR(ENOSYS);
  233. }
  234. #endif