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.

187 lines
6.7KB

  1. /*
  2. * RTP parser for H.261 payload format (RFC 4587)
  3. * Copyright (c) 2014 Thomas Volkert <thomas@homer-conferencing.com>
  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. #include "libavcodec/get_bits.h"
  22. #include "avformat.h"
  23. #include "rtpdec_formats.h"
  24. #define RTP_H261_PAYLOAD_HEADER_SIZE 4
  25. struct PayloadContext {
  26. AVIOContext *buf;
  27. uint8_t endbyte;
  28. int endbyte_bits;
  29. uint32_t timestamp;
  30. };
  31. static void h261_free_dyn_buffer(AVIOContext **dyn_buf)
  32. {
  33. uint8_t *ptr_dyn_buffer;
  34. avio_close_dyn_buf(*dyn_buf, &ptr_dyn_buffer);
  35. av_free(ptr_dyn_buffer);
  36. *dyn_buf = NULL;
  37. }
  38. static av_cold void h261_free_context(PayloadContext *pl_ctx)
  39. {
  40. /* return if context is invalid */
  41. if (!pl_ctx)
  42. return;
  43. /* free buffer if it is valid */
  44. if (pl_ctx->buf) {
  45. h261_free_dyn_buffer(&pl_ctx->buf);
  46. }
  47. /* free context */
  48. av_free(pl_ctx);
  49. }
  50. static int h261_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_h261_ctx,
  51. AVStream *st, AVPacket *pkt, uint32_t *timestamp,
  52. const uint8_t *buf, int len, uint16_t seq,
  53. int flags)
  54. {
  55. int sbit, ebit, gobn, mbap, quant;
  56. int res;
  57. /* drop data of previous packets in case of non-continuous (lossy) packet stream */
  58. if (rtp_h261_ctx->buf && rtp_h261_ctx->timestamp != *timestamp) {
  59. h261_free_dyn_buffer(&rtp_h261_ctx->buf);
  60. rtp_h261_ctx->endbyte_bits = 0;
  61. }
  62. /* sanity check for size of input packet: 1 byte payload at least */
  63. if (len < RTP_H261_PAYLOAD_HEADER_SIZE + 1) {
  64. av_log(ctx, AV_LOG_ERROR, "Too short RTP/H.261 packet, got %d bytes\n", len);
  65. return AVERROR_INVALIDDATA;
  66. }
  67. /*
  68. * decode the H.261 payload header according to section 4.1 of RFC 4587:
  69. * (uses 4 bytes between RTP header and H.261 stream per packet)
  70. *
  71. * 0 1 2 3
  72. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  73. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  74. * |SBIT |EBIT |I|V| GOBN | MBAP | QUANT | HMVD | VMVD |
  75. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  76. *
  77. * Start bit position (SBIT): 3 bits
  78. * End bit position (EBIT): 3 bits
  79. * INTRA-frame encoded data (I): 1 bit
  80. * Motion Vector flag (V): 1 bit
  81. * GOB number (GOBN): 4 bits
  82. * Macroblock address predictor (MBAP): 5 bits
  83. * Quantizer (QUANT): 5 bits
  84. * Horizontal motion vector data (HMVD): 5 bits
  85. * Vertical motion vector data (VMVD): 5 bits
  86. */
  87. sbit = (buf[0] >> 5) & 0x07;
  88. ebit = (buf[0] >> 2) & 0x07;
  89. gobn = (buf[1] >> 4) & 0x0f;
  90. mbap = ((buf[1] << 1) & 0x1e) | ((buf[2] >> 7) & 0x01);
  91. quant = (buf[2] >> 2) & 0x1f;
  92. /* pass the H.261 payload header and continue with the actual payload */
  93. buf += RTP_H261_PAYLOAD_HEADER_SIZE;
  94. len -= RTP_H261_PAYLOAD_HEADER_SIZE;
  95. /* start frame buffering with new dynamic buffer */
  96. if (!rtp_h261_ctx->buf) {
  97. /* sanity check: a new frame starts with gobn=0, sbit=0, mbap=0, quant=0 */
  98. if (!gobn && !sbit && !mbap && !quant) {
  99. res = avio_open_dyn_buf(&rtp_h261_ctx->buf);
  100. if (res < 0)
  101. return res;
  102. /* update the timestamp in the frame packet with the one from the RTP packet */
  103. rtp_h261_ctx->timestamp = *timestamp;
  104. } else {
  105. /* frame not started yet, need more packets */
  106. return AVERROR(EAGAIN);
  107. }
  108. }
  109. /* do the "byte merging" at the boundaries of two consecutive frame fragments */
  110. if (rtp_h261_ctx->endbyte_bits || sbit) {
  111. if (rtp_h261_ctx->endbyte_bits == sbit) {
  112. rtp_h261_ctx->endbyte |= buf[0] & (0xff >> sbit);
  113. rtp_h261_ctx->endbyte_bits = 0;
  114. buf++;
  115. len--;
  116. avio_w8(rtp_h261_ctx->buf, rtp_h261_ctx->endbyte);
  117. } else {
  118. /* ebit/sbit values inconsistent, assuming packet loss */
  119. GetBitContext gb;
  120. init_get_bits(&gb, buf, len*8 - ebit);
  121. skip_bits(&gb, sbit);
  122. if (rtp_h261_ctx->endbyte_bits) {
  123. rtp_h261_ctx->endbyte |= get_bits(&gb, 8 - rtp_h261_ctx->endbyte_bits);
  124. avio_w8(rtp_h261_ctx->buf, rtp_h261_ctx->endbyte);
  125. }
  126. while (get_bits_left(&gb) >= 8)
  127. avio_w8(rtp_h261_ctx->buf, get_bits(&gb, 8));
  128. rtp_h261_ctx->endbyte_bits = get_bits_left(&gb);
  129. if (rtp_h261_ctx->endbyte_bits)
  130. rtp_h261_ctx->endbyte = get_bits(&gb, rtp_h261_ctx->endbyte_bits) <<
  131. (8 - rtp_h261_ctx->endbyte_bits);
  132. ebit = 0;
  133. len = 0;
  134. }
  135. }
  136. if (ebit) {
  137. if (len > 0)
  138. avio_write(rtp_h261_ctx->buf, buf, len - 1);
  139. rtp_h261_ctx->endbyte_bits = 8 - ebit;
  140. rtp_h261_ctx->endbyte = buf[len - 1] & (0xff << ebit);
  141. } else {
  142. avio_write(rtp_h261_ctx->buf, buf, len);
  143. }
  144. /* RTP marker bit means: last fragment of current frame was received;
  145. otherwise, an additional fragment is needed for the current frame */
  146. if (!(flags & RTP_FLAG_MARKER))
  147. return AVERROR(EAGAIN);
  148. /* write the completed last byte from the "byte merging" */
  149. if (rtp_h261_ctx->endbyte_bits)
  150. avio_w8(rtp_h261_ctx->buf, rtp_h261_ctx->endbyte);
  151. rtp_h261_ctx->endbyte_bits = 0;
  152. /* close frame buffering and create resulting A/V packet */
  153. res = ff_rtp_finalize_packet(pkt, &rtp_h261_ctx->buf, st->index);
  154. if (res < 0)
  155. return res;
  156. return 0;
  157. }
  158. RTPDynamicProtocolHandler ff_h261_dynamic_handler = {
  159. .enc_name = "H261",
  160. .codec_type = AVMEDIA_TYPE_VIDEO,
  161. .codec_id = AV_CODEC_ID_H261,
  162. .need_parsing = AVSTREAM_PARSE_FULL,
  163. .priv_data_size = sizeof(PayloadContext),
  164. .free = h261_free_context,
  165. .parse_packet = h261_handle_packet,
  166. .static_payload_id = 31,
  167. };