rtp_mpv.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * RTP packetization for MPEG video
  3. * Copyright (c) 2002 Fabrice Bellard
  4. * Copyright (c) 2007 Luca Abeni
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavcodec/mpegvideo.h"
  23. #include "avformat.h"
  24. #include "rtpenc.h"
  25. /* NOTE: a single frame must be passed with sequence header if
  26. needed. XXX: use slices. */
  27. void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size)
  28. {
  29. RTPMuxContext *s = s1->priv_data;
  30. int len, h, max_packet_size;
  31. uint8_t *q;
  32. int begin_of_slice, end_of_slice, frame_type, temporal_reference;
  33. max_packet_size = s->max_payload_size;
  34. begin_of_slice = 1;
  35. end_of_slice = 0;
  36. frame_type = 0;
  37. temporal_reference = 0;
  38. while (size > 0) {
  39. int begin_of_sequence;
  40. begin_of_sequence = 0;
  41. len = max_packet_size - 4;
  42. if (len >= size) {
  43. len = size;
  44. end_of_slice = 1;
  45. } else {
  46. const uint8_t *r, *r1;
  47. int start_code;
  48. r1 = buf1;
  49. while (1) {
  50. start_code = -1;
  51. r = ff_find_start_code(r1, buf1 + size, &start_code);
  52. if((start_code & 0xFFFFFF00) == 0x100) {
  53. /* New start code found */
  54. if (start_code == 0x100) {
  55. frame_type = (r[1] & 0x38) >> 3;
  56. temporal_reference = (int)r[0] << 2 | r[1] >> 6;
  57. }
  58. if (start_code == 0x1B8) {
  59. begin_of_sequence = 1;
  60. }
  61. if (r - buf1 - 4 <= len) {
  62. /* The current slice fits in the packet */
  63. if (begin_of_slice == 0) {
  64. /* no slice at the beginning of the packet... */
  65. end_of_slice = 1;
  66. len = r - buf1 - 4;
  67. break;
  68. }
  69. r1 = r;
  70. } else {
  71. if ((r1 - buf1 > 4) && (r - r1 < max_packet_size)) {
  72. len = r1 - buf1 - 4;
  73. end_of_slice = 1;
  74. }
  75. break;
  76. }
  77. } else {
  78. break;
  79. }
  80. }
  81. }
  82. h = 0;
  83. h |= temporal_reference << 16;
  84. h |= begin_of_sequence << 13;
  85. h |= begin_of_slice << 12;
  86. h |= end_of_slice << 11;
  87. h |= frame_type << 8;
  88. q = s->buf;
  89. *q++ = h >> 24;
  90. *q++ = h >> 16;
  91. *q++ = h >> 8;
  92. *q++ = h;
  93. memcpy(q, buf1, len);
  94. q += len;
  95. /* 90kHz time stamp */
  96. s->timestamp = s->cur_timestamp;
  97. ff_rtp_send_data(s1, s->buf, q - s->buf, (len == size));
  98. buf1 += len;
  99. size -= len;
  100. begin_of_slice = end_of_slice;
  101. end_of_slice = 0;
  102. }
  103. }