rtpenc_h264.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * RTP packetization for H.264 (RFC3984)
  3. * Copyright (c) 2008 Luca Abeni
  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. /**
  22. * @file
  23. * @brief H.264 packetization
  24. * @author Luca Abeni <lucabe72@email.it>
  25. */
  26. #include "avformat.h"
  27. #include "avc.h"
  28. #include "rtpenc.h"
  29. static const uint8_t *avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_length_size)
  30. {
  31. int res = 0;
  32. if (end - start < nal_length_size) {
  33. return NULL;
  34. }
  35. while (nal_length_size--) {
  36. res = (res << 8) | *start++;
  37. }
  38. if (end - start < res) {
  39. return NULL;
  40. }
  41. return res + start;
  42. }
  43. static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last)
  44. {
  45. RTPMuxContext *s = s1->priv_data;
  46. av_log(s1, AV_LOG_DEBUG, "Sending NAL %x of len %d M=%d\n", buf[0] & 0x1F, size, last);
  47. if (size <= s->max_payload_size) {
  48. ff_rtp_send_data(s1, buf, size, last);
  49. } else {
  50. uint8_t type = buf[0] & 0x1F;
  51. uint8_t nri = buf[0] & 0x60;
  52. av_log(s1, AV_LOG_DEBUG, "NAL size %d > %d\n", size, s->max_payload_size);
  53. s->buf[0] = 28; /* FU Indicator; Type = 28 ---> FU-A */
  54. s->buf[0] |= nri;
  55. s->buf[1] = type;
  56. s->buf[1] |= 1 << 7;
  57. buf += 1;
  58. size -= 1;
  59. while (size + 2 > s->max_payload_size) {
  60. memcpy(&s->buf[2], buf, s->max_payload_size - 2);
  61. ff_rtp_send_data(s1, s->buf, s->max_payload_size, 0);
  62. buf += s->max_payload_size - 2;
  63. size -= s->max_payload_size - 2;
  64. s->buf[1] &= ~(1 << 7);
  65. }
  66. s->buf[1] |= 1 << 6;
  67. memcpy(&s->buf[2], buf, size);
  68. ff_rtp_send_data(s1, s->buf, size + 2, last);
  69. }
  70. }
  71. void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size)
  72. {
  73. const uint8_t *r;
  74. RTPMuxContext *s = s1->priv_data;
  75. s->timestamp = s->cur_timestamp;
  76. r = s->nal_length_size ? (avc_mp4_find_startcode(buf1, buf1 + size, s->nal_length_size) ? buf1 : buf1 + size) : ff_avc_find_startcode(buf1, buf1 + size);
  77. while (r < buf1 + size) {
  78. const uint8_t *r1;
  79. if (s->nal_length_size) {
  80. r1 = avc_mp4_find_startcode(r, buf1 + size, s->nal_length_size);
  81. if (!r1) {
  82. r1 = buf1 + size;
  83. }
  84. r += s->nal_length_size;
  85. } else {
  86. while(!*(r++));
  87. r1 = ff_avc_find_startcode(r, buf1 + size);
  88. }
  89. nal_send(s1, r, r1 - r, (r1 == buf1 + size));
  90. r = r1;
  91. }
  92. }