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.

137 lines
4.6KB

  1. /*
  2. * RTP packetization for H.264 (RFC3984)
  3. * Copyright (c) 2008 Luca Abeni
  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. /**
  22. * @file
  23. * @brief H.264 packetization
  24. * @author Luca Abeni <lucabe72@email.it>
  25. */
  26. #include "libavutil/intreadwrite.h"
  27. #include "avformat.h"
  28. #include "avc.h"
  29. #include "rtpenc.h"
  30. static void flush_buffered(AVFormatContext *s1, int last)
  31. {
  32. RTPMuxContext *s = s1->priv_data;
  33. if (s->buf_ptr != s->buf) {
  34. // If we're only sending one single NAL unit, send it as such, skip
  35. // the STAP-A framing
  36. if (s->buffered_nals == 1)
  37. ff_rtp_send_data(s1, s->buf + 3, s->buf_ptr - s->buf - 3, last);
  38. else
  39. ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, last);
  40. }
  41. s->buf_ptr = s->buf;
  42. s->buffered_nals = 0;
  43. }
  44. static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last)
  45. {
  46. RTPMuxContext *s = s1->priv_data;
  47. av_log(s1, AV_LOG_DEBUG, "Sending NAL %x of len %d M=%d\n", buf[0] & 0x1F, size, last);
  48. if (size <= s->max_payload_size) {
  49. int buffered_size = s->buf_ptr - s->buf;
  50. // Flush buffered NAL units if the current unit doesn't fit
  51. if (buffered_size + 2 + size > s->max_payload_size) {
  52. flush_buffered(s1, 0);
  53. buffered_size = 0;
  54. }
  55. // If we aren't using mode 0, and the NAL unit fits including the
  56. // framing (2 bytes length, plus 1 byte for the STAP-A marker),
  57. // write the unit to the buffer as a STAP-A packet, otherwise flush
  58. // and send as single NAL.
  59. if (buffered_size + 3 + size <= s->max_payload_size &&
  60. !(s->flags & FF_RTP_FLAG_H264_MODE0)) {
  61. if (buffered_size == 0)
  62. *s->buf_ptr++ = 24;
  63. AV_WB16(s->buf_ptr, size);
  64. s->buf_ptr += 2;
  65. memcpy(s->buf_ptr, buf, size);
  66. s->buf_ptr += size;
  67. s->buffered_nals++;
  68. } else {
  69. flush_buffered(s1, 0);
  70. ff_rtp_send_data(s1, buf, size, last);
  71. }
  72. } else {
  73. uint8_t type = buf[0] & 0x1F;
  74. uint8_t nri = buf[0] & 0x60;
  75. flush_buffered(s1, 0);
  76. if (s->flags & FF_RTP_FLAG_H264_MODE0) {
  77. av_log(s1, AV_LOG_ERROR,
  78. "NAL size %d > %d, try -slice-max-size %d\n", size,
  79. s->max_payload_size, s->max_payload_size);
  80. return;
  81. }
  82. av_log(s1, AV_LOG_DEBUG, "NAL size %d > %d\n", size, s->max_payload_size);
  83. s->buf[0] = 28; /* FU Indicator; Type = 28 ---> FU-A */
  84. s->buf[0] |= nri;
  85. s->buf[1] = type;
  86. s->buf[1] |= 1 << 7;
  87. buf += 1;
  88. size -= 1;
  89. while (size + 2 > s->max_payload_size) {
  90. memcpy(&s->buf[2], buf, s->max_payload_size - 2);
  91. ff_rtp_send_data(s1, s->buf, s->max_payload_size, 0);
  92. buf += s->max_payload_size - 2;
  93. size -= s->max_payload_size - 2;
  94. s->buf[1] &= ~(1 << 7);
  95. }
  96. s->buf[1] |= 1 << 6;
  97. memcpy(&s->buf[2], buf, size);
  98. ff_rtp_send_data(s1, s->buf, size + 2, last);
  99. }
  100. }
  101. void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size)
  102. {
  103. const uint8_t *r, *end = buf1 + size;
  104. RTPMuxContext *s = s1->priv_data;
  105. s->timestamp = s->cur_timestamp;
  106. s->buf_ptr = s->buf;
  107. if (s->nal_length_size)
  108. r = ff_avc_mp4_find_startcode(buf1, end, s->nal_length_size) ? buf1 : end;
  109. else
  110. r = ff_avc_find_startcode(buf1, end);
  111. while (r < end) {
  112. const uint8_t *r1;
  113. if (s->nal_length_size) {
  114. r1 = ff_avc_mp4_find_startcode(r, end, s->nal_length_size);
  115. if (!r1)
  116. r1 = end;
  117. r += s->nal_length_size;
  118. } else {
  119. while (!*(r++));
  120. r1 = ff_avc_find_startcode(r, end);
  121. }
  122. nal_send(s1, r, r1 - r, r1 == end);
  123. r = r1;
  124. }
  125. flush_buffered(s1, 1);
  126. }