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.

152 lines
6.2KB

  1. /*
  2. * RTP input/output format
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/opt.h"
  22. #include "avformat.h"
  23. #include "rtp.h"
  24. /* from http://www.iana.org/assignments/rtp-parameters last updated 05 January 2005 */
  25. /* payload types >= 96 are dynamic;
  26. * payload types between 72 and 76 are reserved for RTCP conflict avoidance;
  27. * all the other payload types not present in the table are unassigned or
  28. * reserved
  29. */
  30. static const struct {
  31. int pt;
  32. const char enc_name[6];
  33. enum AVMediaType codec_type;
  34. enum AVCodecID codec_id;
  35. int clock_rate;
  36. int audio_channels;
  37. } rtp_payload_types[] = {
  38. {0, "PCMU", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_MULAW, 8000, 1},
  39. {3, "GSM", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
  40. {4, "G723", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_G723_1, 8000, 1},
  41. {5, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
  42. {6, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 16000, 1},
  43. {7, "LPC", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
  44. {8, "PCMA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_ALAW, 8000, 1},
  45. {9, "G722", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_ADPCM_G722, 8000, 1},
  46. {10, "L16", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_S16BE, 44100, 2},
  47. {11, "L16", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_S16BE, 44100, 1},
  48. {12, "QCELP", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_QCELP, 8000, 1},
  49. {13, "CN", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
  50. {14, "MPA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_MP2, -1, -1},
  51. {14, "MPA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_MP3, -1, -1},
  52. {15, "G728", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
  53. {16, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 11025, 1},
  54. {17, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 22050, 1},
  55. {18, "G729", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
  56. {25, "CelB", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_NONE, 90000, -1},
  57. {26, "JPEG", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MJPEG, 90000, -1},
  58. {28, "nv", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_NONE, 90000, -1},
  59. {31, "H261", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H261, 90000, -1},
  60. {32, "MPV", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG1VIDEO, 90000, -1},
  61. {32, "MPV", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG2VIDEO, 90000, -1},
  62. {33, "MP2T", AVMEDIA_TYPE_DATA, AV_CODEC_ID_MPEG2TS, 90000, -1},
  63. {34, "H263", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H263, 90000, -1},
  64. {-1, "", AVMEDIA_TYPE_UNKNOWN, AV_CODEC_ID_NONE, -1, -1}
  65. };
  66. int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
  67. {
  68. int i = 0;
  69. for (i = 0; rtp_payload_types[i].pt >= 0; i++)
  70. if (rtp_payload_types[i].pt == payload_type) {
  71. if (rtp_payload_types[i].codec_id != AV_CODEC_ID_NONE) {
  72. codec->codec_type = rtp_payload_types[i].codec_type;
  73. codec->codec_id = rtp_payload_types[i].codec_id;
  74. if (rtp_payload_types[i].audio_channels > 0)
  75. codec->channels = rtp_payload_types[i].audio_channels;
  76. if (rtp_payload_types[i].clock_rate > 0)
  77. codec->sample_rate = rtp_payload_types[i].clock_rate;
  78. return 0;
  79. }
  80. }
  81. return -1;
  82. }
  83. int ff_rtp_get_payload_type(AVFormatContext *fmt,
  84. AVCodecContext *codec, int idx)
  85. {
  86. int i;
  87. AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
  88. /* Was the payload type already specified for the RTP muxer? */
  89. if (ofmt && ofmt->priv_class && fmt->priv_data) {
  90. int64_t payload_type;
  91. if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
  92. payload_type >= 0)
  93. return (int)payload_type;
  94. }
  95. /* static payload type */
  96. for (i = 0; rtp_payload_types[i].pt >= 0; ++i)
  97. if (rtp_payload_types[i].codec_id == codec->codec_id) {
  98. if (codec->codec_id == AV_CODEC_ID_H263 && (!fmt || !fmt->oformat ||
  99. !fmt->oformat->priv_class || !fmt->priv_data ||
  100. !av_opt_flag_is_set(fmt->priv_data, "rtpflags", "rfc2190")))
  101. continue;
  102. /* G722 has 8000 as nominal rate even if the sample rate is 16000,
  103. * see section 4.5.2 in RFC 3551. */
  104. if (codec->codec_id == AV_CODEC_ID_ADPCM_G722 &&
  105. codec->sample_rate == 16000 && codec->channels == 1)
  106. return rtp_payload_types[i].pt;
  107. if (codec->codec_type == AVMEDIA_TYPE_AUDIO &&
  108. ((rtp_payload_types[i].clock_rate > 0 &&
  109. codec->sample_rate != rtp_payload_types[i].clock_rate) ||
  110. (rtp_payload_types[i].audio_channels > 0 &&
  111. codec->channels != rtp_payload_types[i].audio_channels)))
  112. continue;
  113. return rtp_payload_types[i].pt;
  114. }
  115. if (idx < 0)
  116. idx = codec->codec_type == AVMEDIA_TYPE_AUDIO;
  117. /* dynamic payload type */
  118. return RTP_PT_PRIVATE + idx;
  119. }
  120. const char *ff_rtp_enc_name(int payload_type)
  121. {
  122. int i;
  123. for (i = 0; rtp_payload_types[i].pt >= 0; i++)
  124. if (rtp_payload_types[i].pt == payload_type)
  125. return rtp_payload_types[i].enc_name;
  126. return "";
  127. }
  128. enum AVCodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type)
  129. {
  130. int i;
  131. for (i = 0; rtp_payload_types[i].pt >= 0; i++)
  132. if (!strcmp(buf, rtp_payload_types[i].enc_name) && (codec_type == rtp_payload_types[i].codec_type))
  133. return rtp_payload_types[i].codec_id;
  134. return AV_CODEC_ID_NONE;
  135. }