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.

203 lines
7.1KB

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