rtpenc_mpv.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. const uint8_t *end = buf1 + size;
  33. int begin_of_slice, end_of_slice, frame_type, temporal_reference;
  34. max_packet_size = s->max_payload_size;
  35. begin_of_slice = 1;
  36. end_of_slice = 0;
  37. frame_type = 0;
  38. temporal_reference = 0;
  39. while (size > 0) {
  40. int begin_of_sequence;
  41. begin_of_sequence = 0;
  42. len = max_packet_size - 4;
  43. if (len >= size) {
  44. len = size;
  45. end_of_slice = 1;
  46. } else {
  47. const uint8_t *r, *r1;
  48. int start_code;
  49. r1 = buf1;
  50. while (1) {
  51. start_code = -1;
  52. r = avpriv_mpv_find_start_code(r1, end, &start_code);
  53. if((start_code & 0xFFFFFF00) == 0x100) {
  54. /* New start code found */
  55. if (start_code == 0x100) {
  56. frame_type = (r[1] & 0x38) >> 3;
  57. temporal_reference = (int)r[0] << 2 | r[1] >> 6;
  58. }
  59. if (start_code == 0x1B8) {
  60. begin_of_sequence = 1;
  61. }
  62. if (r - buf1 - 4 <= len) {
  63. /* The current slice fits in the packet */
  64. if (begin_of_slice == 0) {
  65. /* no slice at the beginning of the packet... */
  66. end_of_slice = 1;
  67. len = r - buf1 - 4;
  68. break;
  69. }
  70. r1 = r;
  71. } else {
  72. if ((r1 - buf1 > 4) && (r - r1 < max_packet_size)) {
  73. len = r1 - buf1 - 4;
  74. end_of_slice = 1;
  75. }
  76. break;
  77. }
  78. } else {
  79. break;
  80. }
  81. }
  82. }
  83. h = 0;
  84. h |= temporal_reference << 16;
  85. h |= begin_of_sequence << 13;
  86. h |= begin_of_slice << 12;
  87. h |= end_of_slice << 11;
  88. h |= frame_type << 8;
  89. q = s->buf;
  90. *q++ = h >> 24;
  91. *q++ = h >> 16;
  92. *q++ = h >> 8;
  93. *q++ = h;
  94. memcpy(q, buf1, len);
  95. q += len;
  96. /* 90kHz time stamp */
  97. s->timestamp = s->cur_timestamp;
  98. ff_rtp_send_data(s1, s->buf, q - s->buf, (len == size));
  99. buf1 += len;
  100. size -= len;
  101. begin_of_slice = end_of_slice;
  102. end_of_slice = 0;
  103. }
  104. }