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.

136 lines
5.0KB

  1. /*
  2. * RTP input/output format
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavcodec/get_bits.h"
  22. #include "avformat.h"
  23. #include <unistd.h>
  24. #include "network.h"
  25. #include "rtp.h"
  26. //#define DEBUG
  27. /* from http://www.iana.org/assignments/rtp-parameters last updated 05 January 2005 */
  28. /* payload types >= 96 are dynamic;
  29. * payload types between 72 and 76 are reserved for RTCP conflict avoidance;
  30. * all the other payload types not present in the table are unassigned or
  31. * reserved
  32. */
  33. static const struct
  34. {
  35. int pt;
  36. const char enc_name[6];
  37. enum CodecType codec_type;
  38. enum CodecID codec_id;
  39. int clock_rate;
  40. int audio_channels;
  41. } AVRtpPayloadTypes[]=
  42. {
  43. {0, "PCMU", CODEC_TYPE_AUDIO, CODEC_ID_PCM_MULAW, 8000, 1},
  44. {3, "GSM", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  45. {4, "G723", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  46. {5, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  47. {6, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 16000, 1},
  48. {7, "LPC", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  49. {8, "PCMA", CODEC_TYPE_AUDIO, CODEC_ID_PCM_ALAW, 8000, 1},
  50. {9, "G722", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  51. {10, "L16", CODEC_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 2},
  52. {11, "L16", CODEC_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 1},
  53. {12, "QCELP", CODEC_TYPE_AUDIO, CODEC_ID_QCELP, 8000, 1},
  54. {13, "CN", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  55. {14, "MPA", CODEC_TYPE_AUDIO, CODEC_ID_MP2, -1, -1},
  56. {14, "MPA", CODEC_TYPE_AUDIO, CODEC_ID_MP3, -1, -1},
  57. {15, "G728", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  58. {16, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 11025, 1},
  59. {17, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 22050, 1},
  60. {18, "G729", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  61. {25, "CelB", CODEC_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1},
  62. {26, "JPEG", CODEC_TYPE_VIDEO, CODEC_ID_MJPEG, 90000, -1},
  63. {28, "nv", CODEC_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1},
  64. {31, "H261", CODEC_TYPE_VIDEO, CODEC_ID_H261, 90000, -1},
  65. {32, "MPV", CODEC_TYPE_VIDEO, CODEC_ID_MPEG1VIDEO, 90000, -1},
  66. {32, "MPV", CODEC_TYPE_VIDEO, CODEC_ID_MPEG2VIDEO, 90000, -1},
  67. {33, "MP2T", CODEC_TYPE_DATA, CODEC_ID_MPEG2TS, 90000, -1},
  68. {34, "H263", CODEC_TYPE_VIDEO, CODEC_ID_H263, 90000, -1},
  69. {-1, "", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}
  70. };
  71. int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
  72. {
  73. int i = 0;
  74. for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
  75. if (AVRtpPayloadTypes[i].pt == payload_type) {
  76. if (AVRtpPayloadTypes[i].codec_id != CODEC_ID_NONE) {
  77. codec->codec_type = AVRtpPayloadTypes[i].codec_type;
  78. codec->codec_id = AVRtpPayloadTypes[i].codec_id;
  79. if (AVRtpPayloadTypes[i].audio_channels > 0)
  80. codec->channels = AVRtpPayloadTypes[i].audio_channels;
  81. if (AVRtpPayloadTypes[i].clock_rate > 0)
  82. codec->sample_rate = AVRtpPayloadTypes[i].clock_rate;
  83. return 0;
  84. }
  85. }
  86. return -1;
  87. }
  88. int ff_rtp_get_payload_type(AVCodecContext *codec)
  89. {
  90. int i, payload_type;
  91. /* compute the payload type */
  92. for (payload_type = -1, i = 0; AVRtpPayloadTypes[i].pt >= 0; ++i)
  93. if (AVRtpPayloadTypes[i].codec_id == codec->codec_id) {
  94. if (codec->codec_id == CODEC_ID_H263)
  95. continue;
  96. if (codec->codec_id == CODEC_ID_PCM_S16BE)
  97. if (codec->channels != AVRtpPayloadTypes[i].audio_channels)
  98. continue;
  99. payload_type = AVRtpPayloadTypes[i].pt;
  100. }
  101. return payload_type;
  102. }
  103. const char *ff_rtp_enc_name(int payload_type)
  104. {
  105. int i;
  106. for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
  107. if (AVRtpPayloadTypes[i].pt == payload_type) {
  108. return AVRtpPayloadTypes[i].enc_name;
  109. }
  110. return "";
  111. }
  112. enum CodecID ff_rtp_codec_id(const char *buf, enum CodecType codec_type)
  113. {
  114. int i;
  115. for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
  116. if (!strcmp(buf, AVRtpPayloadTypes[i].enc_name) && (codec_type == AVRtpPayloadTypes[i].codec_type)){
  117. return AVRtpPayloadTypes[i].codec_id;
  118. }
  119. return CODEC_ID_NONE;
  120. }