rtp.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 "avformat.h"
  22. #include "rtp.h"
  23. //#define DEBUG
  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. {
  32. int pt;
  33. const char enc_name[6];
  34. enum AVMediaType codec_type;
  35. enum CodecID codec_id;
  36. int clock_rate;
  37. int audio_channels;
  38. } AVRtpPayloadTypes[]=
  39. {
  40. {0, "PCMU", AVMEDIA_TYPE_AUDIO, CODEC_ID_PCM_MULAW, 8000, 1},
  41. {3, "GSM", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  42. {4, "G723", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  43. {5, "DVI4", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  44. {6, "DVI4", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 16000, 1},
  45. {7, "LPC", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  46. {8, "PCMA", AVMEDIA_TYPE_AUDIO, CODEC_ID_PCM_ALAW, 8000, 1},
  47. {9, "G722", AVMEDIA_TYPE_AUDIO, CODEC_ID_ADPCM_G722, 8000, 1},
  48. {10, "L16", AVMEDIA_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 2},
  49. {11, "L16", AVMEDIA_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 1},
  50. {12, "QCELP", AVMEDIA_TYPE_AUDIO, CODEC_ID_QCELP, 8000, 1},
  51. {13, "CN", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  52. {14, "MPA", AVMEDIA_TYPE_AUDIO, CODEC_ID_MP2, -1, -1},
  53. {14, "MPA", AVMEDIA_TYPE_AUDIO, CODEC_ID_MP3, -1, -1},
  54. {15, "G728", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  55. {16, "DVI4", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 11025, 1},
  56. {17, "DVI4", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 22050, 1},
  57. {18, "G729", AVMEDIA_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
  58. {25, "CelB", AVMEDIA_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1},
  59. {26, "JPEG", AVMEDIA_TYPE_VIDEO, CODEC_ID_MJPEG, 90000, -1},
  60. {28, "nv", AVMEDIA_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1},
  61. {31, "H261", AVMEDIA_TYPE_VIDEO, CODEC_ID_H261, 90000, -1},
  62. {32, "MPV", AVMEDIA_TYPE_VIDEO, CODEC_ID_MPEG1VIDEO, 90000, -1},
  63. {32, "MPV", AVMEDIA_TYPE_VIDEO, CODEC_ID_MPEG2VIDEO, 90000, -1},
  64. {33, "MP2T", AVMEDIA_TYPE_DATA, CODEC_ID_MPEG2TS, 90000, -1},
  65. {34, "H263", AVMEDIA_TYPE_VIDEO, CODEC_ID_H263, 90000, -1},
  66. {-1, "", AVMEDIA_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}
  67. };
  68. int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
  69. {
  70. int i = 0;
  71. for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
  72. if (AVRtpPayloadTypes[i].pt == payload_type) {
  73. if (AVRtpPayloadTypes[i].codec_id != CODEC_ID_NONE) {
  74. codec->codec_type = AVRtpPayloadTypes[i].codec_type;
  75. codec->codec_id = AVRtpPayloadTypes[i].codec_id;
  76. if (AVRtpPayloadTypes[i].audio_channels > 0)
  77. codec->channels = AVRtpPayloadTypes[i].audio_channels;
  78. if (AVRtpPayloadTypes[i].clock_rate > 0)
  79. codec->sample_rate = AVRtpPayloadTypes[i].clock_rate;
  80. return 0;
  81. }
  82. }
  83. return -1;
  84. }
  85. int ff_rtp_get_payload_type(AVCodecContext *codec)
  86. {
  87. int i, payload_type;
  88. /* compute the payload type */
  89. for (payload_type = -1, i = 0; AVRtpPayloadTypes[i].pt >= 0; ++i)
  90. if (AVRtpPayloadTypes[i].codec_id == codec->codec_id) {
  91. if (codec->codec_id == CODEC_ID_H263)
  92. continue;
  93. if (codec->codec_id == CODEC_ID_PCM_S16BE)
  94. if (codec->channels != AVRtpPayloadTypes[i].audio_channels)
  95. continue;
  96. payload_type = AVRtpPayloadTypes[i].pt;
  97. }
  98. return payload_type;
  99. }
  100. const char *ff_rtp_enc_name(int payload_type)
  101. {
  102. int i;
  103. for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
  104. if (AVRtpPayloadTypes[i].pt == payload_type) {
  105. return AVRtpPayloadTypes[i].enc_name;
  106. }
  107. return "";
  108. }
  109. enum CodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type)
  110. {
  111. int i;
  112. for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
  113. if (!strcmp(buf, AVRtpPayloadTypes[i].enc_name) && (codec_type == AVRtpPayloadTypes[i].codec_type)){
  114. return AVRtpPayloadTypes[i].codec_id;
  115. }
  116. return CODEC_ID_NONE;
  117. }