2 * RTP H.263 Depacketizer, RFC 2190
3 * Copyright (c) 2012 Martin Storsjo
4 * Based on the GStreamer H.263 Depayloder:
5 * Copyright 2005 Wim Taymans
6 * Copyright 2007 Edward Hervey
7 * Copyright 2007 Nokia Corporation
8 * Copyright 2007 Collabora Ltd, Philippe Kalaf
9 * Copyright 2010 Mark Nauwelaerts
11 * This file is part of FFmpeg.
13 * FFmpeg is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU Lesser General Public
15 * License as published by the Free Software Foundation; either
16 * version 2.1 of the License, or (at your option) any later version.
18 * FFmpeg is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * Lesser General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with FFmpeg; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29 #include "avio_internal.h"
30 #include "rtpdec_formats.h"
31 #include "libavutil/attributes.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavcodec/get_bits.h"
35 struct PayloadContext {
43 static void h263_close_context(PayloadContext *data)
45 ffio_free_dyn_buf(&data->buf);
48 static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
49 AVStream *st, AVPacket *pkt, uint32_t *timestamp,
50 const uint8_t *buf, int len, uint16_t seq,
53 /* Corresponding to header fields in the RFC */
54 int f, p, i, sbit, ebit, src, r;
58 return ff_h263_handle_packet(ctx, data, st, pkt, timestamp, buf, len,
61 if (data->buf && data->timestamp != *timestamp) {
62 /* Dropping old buffered, unfinished data */
63 ffio_free_dyn_buf(&data->buf);
64 data->endbyte_bits = 0;
68 av_log(ctx, AV_LOG_ERROR, "Too short H.263 RTP packet: %d\n", len);
69 return AVERROR_INVALIDDATA;
78 r = ((buf[1] & 0x01) << 3) | ((buf[2] & 0xe0) >> 5);
82 if (len < header_size) {
83 av_log(ctx, AV_LOG_ERROR,
84 "Too short H.263 RTP packet: %d bytes, %d header bytes\n",
86 return AVERROR_INVALIDDATA;
93 if (len < header_size) {
94 av_log(ctx, AV_LOG_ERROR,
95 "Too short H.263 RTP packet: %d bytes, %d header bytes\n",
97 return AVERROR_INVALIDDATA;
102 sbit = (buf[0] >> 3) & 0x7;
104 src = (buf[1] & 0xe0) >> 5;
105 if (!(buf[0] & 0xf8)) { /* Reserved bits in RFC 2429/4629 are zero */
106 if ((src == 0 || src >= 6) && r) {
107 /* Invalid src for this format, and bits that should be zero
108 * according to RFC 2190 aren't zero. */
109 av_log(ctx, AV_LOG_WARNING,
110 "Interpreting H263 RTP data as RFC 2429/4629 even though "
111 "signalled with a static payload type.\n");
113 return ff_h263_handle_packet(ctx, data, st, pkt, timestamp, buf,
122 /* Check the picture start code, only start buffering a new frame
123 * if this is correct */
124 if (len > 4 && AV_RB32(buf) >> 10 == 0x20) {
125 ret = avio_open_dyn_buf(&data->buf);
128 data->timestamp = *timestamp;
130 /* Frame not started yet, skipping */
131 return AVERROR(EAGAIN);
135 if (data->endbyte_bits || sbit) {
136 if (data->endbyte_bits == sbit) {
137 data->endbyte |= buf[0] & (0xff >> sbit);
138 data->endbyte_bits = 0;
141 avio_w8(data->buf, data->endbyte);
143 /* Start/end skip bits not matching - missed packets? */
145 init_get_bits(&gb, buf, len*8 - ebit);
146 skip_bits(&gb, sbit);
147 if (data->endbyte_bits) {
148 data->endbyte |= get_bits(&gb, 8 - data->endbyte_bits);
149 avio_w8(data->buf, data->endbyte);
151 while (get_bits_left(&gb) >= 8)
152 avio_w8(data->buf, get_bits(&gb, 8));
153 data->endbyte_bits = get_bits_left(&gb);
154 if (data->endbyte_bits)
155 data->endbyte = get_bits(&gb, data->endbyte_bits) <<
156 (8 - data->endbyte_bits);
163 avio_write(data->buf, buf, len - 1);
164 data->endbyte_bits = 8 - ebit;
165 data->endbyte = buf[len - 1] & (0xff << ebit);
167 avio_write(data->buf, buf, len);
170 if (!(flags & RTP_FLAG_MARKER))
171 return AVERROR(EAGAIN);
173 if (data->endbyte_bits)
174 avio_w8(data->buf, data->endbyte);
175 data->endbyte_bits = 0;
177 ret = ff_rtp_finalize_packet(pkt, &data->buf, st->index);
181 pkt->flags |= AV_PKT_FLAG_KEY;
186 RTPDynamicProtocolHandler ff_h263_rfc2190_dynamic_handler = {
187 .codec_type = AVMEDIA_TYPE_VIDEO,
188 .codec_id = AV_CODEC_ID_H263,
189 .need_parsing = AVSTREAM_PARSE_FULL,
190 .parse_packet = h263_handle_packet,
191 .priv_data_size = sizeof(PayloadContext),
192 .close = h263_close_context,
193 .static_payload_id = 34,