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.

249 lines
7.8KB

  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(const uint8_t *extradata, int extradata_size)
  100. {
  101. char *config;
  102. if (extradata_size > MAX_EXTRADATA_SIZE) {
  103. av_log(NULL, AV_LOG_ERROR, "Too many extra data!\n");
  104. return NULL;
  105. }
  106. config = av_malloc(10 + extradata_size * 2);
  107. if (config == NULL) {
  108. av_log(NULL, 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, extradata, extradata_size);
  113. config[9 + 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->extradata, c->extradata_size);
  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->extradata, c->extradata_size);
  132. } else {
  133. /* FIXME: maybe we can forge config information based on the
  134. * codec parameters...
  135. */
  136. av_log(NULL, 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. default:
  150. /* Nothing special to do, here... */
  151. break;
  152. }
  153. av_free(config);
  154. return buff;
  155. }
  156. static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl)
  157. {
  158. const char *type;
  159. int payload_type;
  160. payload_type = rtp_get_payload_type(c);
  161. if (payload_type < 0) {
  162. payload_type = 96; /* FIXME: how to assign a private pt? rtp.c is broken too */
  163. }
  164. switch (c->codec_type) {
  165. case CODEC_TYPE_VIDEO : type = "video" ; break;
  166. case CODEC_TYPE_AUDIO : type = "audio" ; break;
  167. case CODEC_TYPE_SUBTITLE: type = "text" ; break;
  168. default : type = "application"; break;
  169. }
  170. av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
  171. dest_write(buff, size, dest_addr, ttl);
  172. sdp_media_attributes(buff, size, c, payload_type);
  173. }
  174. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  175. {
  176. struct sdp_session_level s;
  177. int i, j, port, ttl;
  178. char dst[32];
  179. memset(buff, 0, size);
  180. memset(&s, 0, sizeof(struct sdp_session_level));
  181. s.user = "-";
  182. s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
  183. s.name = ac[0]->title;
  184. port = 0;
  185. ttl = 0;
  186. if (n_files == 1) {
  187. port = get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
  188. if (port > 0) {
  189. s.dst_addr = dst;
  190. s.ttl = ttl;
  191. }
  192. }
  193. sdp_write_header(buff, size, &s);
  194. dst[0] = 0;
  195. for (i = 0; i < n_files; i++) {
  196. if (n_files != 1) {
  197. port = get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
  198. }
  199. for (j = 0; j < ac[i]->nb_streams; j++) {
  200. sdp_write_media(buff, size,
  201. ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
  202. (port > 0) ? port + j * 2 : 0, ttl);
  203. if (port <= 0) {
  204. av_strlcatf(buff, size,
  205. "a=control:streamid=%d\r\n", i + j);
  206. }
  207. }
  208. }
  209. return 0;
  210. }
  211. #else
  212. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  213. {
  214. return AVERROR(ENOSYS);
  215. }
  216. #endif