libavformat/rtpdec_h263_rfc2190.c
08bddfcd
 /*
  * RTP H.263 Depacketizer, RFC 2190
  * Copyright (c) 2012 Martin Storsjo
  * Based on the GStreamer H.263 Depayloder:
  * Copyright 2005 Wim Taymans
  * Copyright 2007 Edward Hervey
  * Copyright 2007 Nokia Corporation
  * Copyright 2007 Collabora Ltd, Philippe Kalaf
  * Copyright 2010 Mark Nauwelaerts
  *
d814a839
  * This file is part of FFmpeg.
08bddfcd
  *
d814a839
  * FFmpeg is free software; you can redistribute it and/or
08bddfcd
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
d814a839
  * FFmpeg is distributed in the hope that it will be useful,
08bddfcd
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
d814a839
  * License along with FFmpeg; if not, write to the Free Software
08bddfcd
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "avformat.h"
199fb402
 #include "avio_internal.h"
08bddfcd
 #include "rtpdec_formats.h"
7abd35a1
 #include "libavutil/attributes.h"
08bddfcd
 #include "libavutil/intreadwrite.h"
 #include "libavcodec/get_bits.h"
 
 struct PayloadContext {
     AVIOContext *buf;
     uint8_t      endbyte;
     int          endbyte_bits;
     uint32_t     timestamp;
c7e8639c
     int          newformat;
08bddfcd
 };
 
d594dbec
 static void h263_close_context(PayloadContext *data)
08bddfcd
 {
199fb402
     ffio_free_dyn_buf(&data->buf);
08bddfcd
 }
 
 static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
                               AVStream *st, AVPacket *pkt, uint32_t *timestamp,
90c784cc
                               const uint8_t *buf, int len, uint16_t seq,
                               int flags)
08bddfcd
 {
c7e8639c
     /* Corresponding to header fields in the RFC */
     int f, p, i, sbit, ebit, src, r;
179a5c37
     int header_size, ret;
08bddfcd
 
c7e8639c
     if (data->newformat)
         return ff_h263_handle_packet(ctx, data, st, pkt, timestamp, buf, len,
90c784cc
                                      seq, flags);
c7e8639c
 
08bddfcd
     if (data->buf && data->timestamp != *timestamp) {
         /* Dropping old buffered, unfinished data */
199fb402
         ffio_free_dyn_buf(&data->buf);
df07c07b
         data->endbyte_bits = 0;
08bddfcd
     }
 
     if (len < 4) {
         av_log(ctx, AV_LOG_ERROR, "Too short H.263 RTP packet: %d\n", len);
         return AVERROR_INVALIDDATA;
     }
 
     f = buf[0] & 0x80;
     p = buf[0] & 0x40;
     if (!f) {
         /* Mode A */
         header_size = 4;
         i = buf[1] & 0x10;
c7e8639c
         r = ((buf[1] & 0x01) << 3) | ((buf[2] & 0xe0) >> 5);
08bddfcd
     } else if (!p) {
         /* Mode B */
         header_size = 8;
         if (len < header_size) {
             av_log(ctx, AV_LOG_ERROR,
                    "Too short H.263 RTP packet: %d bytes, %d header bytes\n",
                    len, header_size);
             return AVERROR_INVALIDDATA;
         }
c7e8639c
         r = buf[3] & 0x03;
08bddfcd
         i = buf[4] & 0x80;
     } else {
         /* Mode C */
         header_size = 12;
         if (len < header_size) {
             av_log(ctx, AV_LOG_ERROR,
                    "Too short H.263 RTP packet: %d bytes, %d header bytes\n",
                    len, header_size);
             return AVERROR_INVALIDDATA;
         }
c7e8639c
         r = buf[3] & 0x03;
08bddfcd
         i = buf[4] & 0x80;
     }
     sbit = (buf[0] >> 3) & 0x7;
     ebit =  buf[0]       & 0x7;
c7e8639c
     src  = (buf[1] & 0xe0) >> 5;
     if (!(buf[0] & 0xf8)) { /* Reserved bits in RFC 2429/4629 are zero */
         if ((src == 0 || src >= 6) && r) {
             /* Invalid src for this format, and bits that should be zero
              * according to RFC 2190 aren't zero. */
             av_log(ctx, AV_LOG_WARNING,
                    "Interpreting H263 RTP data as RFC 2429/4629 even though "
                    "signalled with a static payload type.\n");
             data->newformat = 1;
             return ff_h263_handle_packet(ctx, data, st, pkt, timestamp, buf,
90c784cc
                                          len, seq, flags);
c7e8639c
         }
     }
08bddfcd
 
     buf += header_size;
     len -= header_size;
 
     if (!data->buf) {
         /* Check the picture start code, only start buffering a new frame
          * if this is correct */
d1beee07
         if (len > 4 && AV_RB32(buf) >> 10 == 0x20) {
179a5c37
             ret = avio_open_dyn_buf(&data->buf);
08bddfcd
             if (ret < 0)
                 return ret;
             data->timestamp = *timestamp;
         } else {
             /* Frame not started yet, skipping */
             return AVERROR(EAGAIN);
         }
     }
 
     if (data->endbyte_bits || sbit) {
         if (data->endbyte_bits == sbit) {
             data->endbyte |= buf[0] & (0xff >> sbit);
             data->endbyte_bits = 0;
             buf++;
             len--;
             avio_w8(data->buf, data->endbyte);
         } else {
             /* Start/end skip bits not matching - missed packets? */
             GetBitContext gb;
             init_get_bits(&gb, buf, len*8 - ebit);
             skip_bits(&gb, sbit);
             if (data->endbyte_bits) {
                 data->endbyte |= get_bits(&gb, 8 - data->endbyte_bits);
                 avio_w8(data->buf, data->endbyte);
             }
             while (get_bits_left(&gb) >= 8)
                 avio_w8(data->buf, get_bits(&gb, 8));
             data->endbyte_bits = get_bits_left(&gb);
             if (data->endbyte_bits)
                 data->endbyte = get_bits(&gb, data->endbyte_bits) <<
                                 (8 - data->endbyte_bits);
             ebit = 0;
             len = 0;
         }
     }
     if (ebit) {
         if (len > 0)
             avio_write(data->buf, buf, len - 1);
         data->endbyte_bits = 8 - ebit;
         data->endbyte = buf[len - 1] & (0xff << ebit);
     } else {
         avio_write(data->buf, buf, len);
     }
 
     if (!(flags & RTP_FLAG_MARKER))
         return AVERROR(EAGAIN);
 
     if (data->endbyte_bits)
         avio_w8(data->buf, data->endbyte);
     data->endbyte_bits = 0;
 
179a5c37
     ret = ff_rtp_finalize_packet(pkt, &data->buf, st->index);
     if (ret < 0)
         return ret;
08bddfcd
     if (!i)
         pkt->flags   |= AV_PKT_FLAG_KEY;
 
     return 0;
 }
 
 RTPDynamicProtocolHandler ff_h263_rfc2190_dynamic_handler = {
     .codec_type        = AVMEDIA_TYPE_VIDEO,
36ef5369
     .codec_id          = AV_CODEC_ID_H263,
2b982e92
     .need_parsing      = AVSTREAM_PARSE_FULL,
08bddfcd
     .parse_packet      = h263_handle_packet,
5d8cae45
     .priv_data_size    = sizeof(PayloadContext),
d594dbec
     .close             = h263_close_context,
08bddfcd
     .static_payload_id = 34,
 };