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.

208 lines
7.0KB

  1. /*
  2. * RTP packetization for H.264 (RFC3984)
  3. * RTP packetizer for HEVC/H.265 payload format (draft version 6)
  4. * Copyright (c) 2008 Luca Abeni
  5. * Copyright (c) 2014 Thomas Volkert <thomas@homer-conferencing.com>
  6. *
  7. * This file is part of Libav.
  8. *
  9. * Libav is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * Libav is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with Libav; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * @brief H.264/HEVC packetization
  26. * @author Luca Abeni <lucabe72@email.it>
  27. */
  28. #include "libavutil/intreadwrite.h"
  29. #include "avformat.h"
  30. #include "avc.h"
  31. #include "rtpenc.h"
  32. static void flush_buffered(AVFormatContext *s1, int last)
  33. {
  34. RTPMuxContext *s = s1->priv_data;
  35. if (s->buf_ptr != s->buf) {
  36. // If we're only sending one single NAL unit, send it as such, skip
  37. // the STAP-A/AP framing
  38. if (s->buffered_nals == 1) {
  39. enum AVCodecID codec = s1->streams[0]->codecpar->codec_id;
  40. if (codec == AV_CODEC_ID_H264)
  41. ff_rtp_send_data(s1, s->buf + 3, s->buf_ptr - s->buf - 3, last);
  42. else
  43. ff_rtp_send_data(s1, s->buf + 4, s->buf_ptr - s->buf - 4, last);
  44. } else
  45. ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, last);
  46. }
  47. s->buf_ptr = s->buf;
  48. s->buffered_nals = 0;
  49. }
  50. static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last)
  51. {
  52. RTPMuxContext *s = s1->priv_data;
  53. enum AVCodecID codec = s1->streams[0]->codecpar->codec_id;
  54. av_log(s1, AV_LOG_DEBUG, "Sending NAL %x of len %d M=%d\n", buf[0] & 0x1F, size, last);
  55. if (size <= s->max_payload_size) {
  56. int buffered_size = s->buf_ptr - s->buf;
  57. int header_size;
  58. int skip_aggregate = 0;
  59. if (codec == AV_CODEC_ID_H264) {
  60. header_size = 1;
  61. skip_aggregate = s->flags & FF_RTP_FLAG_H264_MODE0;
  62. } else {
  63. header_size = 2;
  64. }
  65. // Flush buffered NAL units if the current unit doesn't fit
  66. if (buffered_size + 2 + size > s->max_payload_size) {
  67. flush_buffered(s1, 0);
  68. buffered_size = 0;
  69. }
  70. // If we aren't using mode 0, and the NAL unit fits including the
  71. // framing (2 bytes length, plus 1/2 bytes for the STAP-A/AP marker),
  72. // write the unit to the buffer as a STAP-A/AP packet, otherwise flush
  73. // and send as single NAL.
  74. if (buffered_size + 2 + header_size + size <= s->max_payload_size &&
  75. !skip_aggregate) {
  76. if (buffered_size == 0) {
  77. if (codec == AV_CODEC_ID_H264) {
  78. *s->buf_ptr++ = 24;
  79. } else {
  80. *s->buf_ptr++ = 48 << 1;
  81. *s->buf_ptr++ = 1;
  82. }
  83. }
  84. AV_WB16(s->buf_ptr, size);
  85. s->buf_ptr += 2;
  86. memcpy(s->buf_ptr, buf, size);
  87. s->buf_ptr += size;
  88. s->buffered_nals++;
  89. } else {
  90. flush_buffered(s1, 0);
  91. ff_rtp_send_data(s1, buf, size, last);
  92. }
  93. } else {
  94. int flag_byte, header_size;
  95. flush_buffered(s1, 0);
  96. if (codec == AV_CODEC_ID_H264 && (s->flags & FF_RTP_FLAG_H264_MODE0)) {
  97. av_log(s1, AV_LOG_ERROR,
  98. "NAL size %d > %d, try -slice-max-size %d\n", size,
  99. s->max_payload_size, s->max_payload_size);
  100. return;
  101. }
  102. av_log(s1, AV_LOG_DEBUG, "NAL size %d > %d\n", size, s->max_payload_size);
  103. if (codec == AV_CODEC_ID_H264) {
  104. uint8_t type = buf[0] & 0x1F;
  105. uint8_t nri = buf[0] & 0x60;
  106. s->buf[0] = 28; /* FU Indicator; Type = 28 ---> FU-A */
  107. s->buf[0] |= nri;
  108. s->buf[1] = type;
  109. s->buf[1] |= 1 << 7;
  110. buf += 1;
  111. size -= 1;
  112. flag_byte = 1;
  113. header_size = 2;
  114. } else {
  115. uint8_t nal_type = (buf[0] >> 1) & 0x3F;
  116. /*
  117. * create the HEVC payload header and transmit the buffer as fragmentation units (FU)
  118. *
  119. * 0 1
  120. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
  121. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  122. * |F| Type | LayerId | TID |
  123. * +-------------+-----------------+
  124. *
  125. * F = 0
  126. * Type = 49 (fragmentation unit (FU))
  127. * LayerId = 0
  128. * TID = 1
  129. */
  130. s->buf[0] = 49 << 1;
  131. s->buf[1] = 1;
  132. /*
  133. * create the FU header
  134. *
  135. * 0 1 2 3 4 5 6 7
  136. * +-+-+-+-+-+-+-+-+
  137. * |S|E| FuType |
  138. * +---------------+
  139. *
  140. * S = variable
  141. * E = variable
  142. * FuType = NAL unit type
  143. */
  144. s->buf[2] = nal_type;
  145. /* set the S bit: mark as start fragment */
  146. s->buf[2] |= 1 << 7;
  147. /* pass the original NAL header */
  148. buf += 2;
  149. size -= 2;
  150. flag_byte = 2;
  151. header_size = 3;
  152. }
  153. while (size + header_size > s->max_payload_size) {
  154. memcpy(&s->buf[header_size], buf, s->max_payload_size - header_size);
  155. ff_rtp_send_data(s1, s->buf, s->max_payload_size, 0);
  156. buf += s->max_payload_size - header_size;
  157. size -= s->max_payload_size - header_size;
  158. s->buf[flag_byte] &= ~(1 << 7);
  159. }
  160. s->buf[flag_byte] |= 1 << 6;
  161. memcpy(&s->buf[header_size], buf, size);
  162. ff_rtp_send_data(s1, s->buf, size + header_size, last);
  163. }
  164. }
  165. void ff_rtp_send_h264_hevc(AVFormatContext *s1, const uint8_t *buf1, int size)
  166. {
  167. const uint8_t *r, *end = buf1 + size;
  168. RTPMuxContext *s = s1->priv_data;
  169. s->timestamp = s->cur_timestamp;
  170. s->buf_ptr = s->buf;
  171. if (s->nal_length_size)
  172. r = ff_avc_mp4_find_startcode(buf1, end, s->nal_length_size) ? buf1 : end;
  173. else
  174. r = ff_avc_find_startcode(buf1, end);
  175. while (r < end) {
  176. const uint8_t *r1;
  177. if (s->nal_length_size) {
  178. r1 = ff_avc_mp4_find_startcode(r, end, s->nal_length_size);
  179. if (!r1)
  180. r1 = end;
  181. r += s->nal_length_size;
  182. } else {
  183. while (!*(r++));
  184. r1 = ff_avc_find_startcode(r, end);
  185. }
  186. nal_send(s1, r, r1 - r, r1 == end);
  187. r = r1;
  188. }
  189. flush_buffered(s1, 1);
  190. }