rtpdec_svq3.c 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Sorenson-3 (SVQ3/SV3V) payload for RTP
 * Copyright (c) 2010 Ronald S. Bultje
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * 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.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
 * @file
 * @brief RTP support for the SV3V (SVQ3) payload
 * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
26
 * @see http://wiki.multimedia.cx/index.php?title=Sorenson_Video_3#Packetization
27 28 29
 */

#include <string.h>
30
#include "libavutil/intreadwrite.h"
31
#include "avio_internal.h"
32
#include "internal.h"
33 34
#include "rtp.h"
#include "rtpdec.h"
35
#include "rtpdec_formats.h"
36 37

struct PayloadContext {
38
    AVIOContext *pktbuf;
39 40 41 42 43 44 45
    int64_t        timestamp;
};

/** return 0 on packet, <0 on partial packet or error... */
static int svq3_parse_packet (AVFormatContext *s, PayloadContext *sv,
                              AVStream *st, AVPacket *pkt,
                              uint32_t *timestamp,
46 47
                              const uint8_t *buf, int len, uint16_t seq,
                              int flags)
48 49 50 51 52 53 54 55 56 57 58 59 60 61
{
    int config_packet, start_packet, end_packet;

    if (len < 2)
        return AVERROR_INVALIDDATA;

    config_packet = buf[0] & 0x40;
    start_packet  = buf[0] & 0x20;
    end_packet    = buf[0] & 0x10;
    buf += 2;     // ignore buf[1]
    len -= 2;

    if (config_packet) {

62 63
        av_freep(&st->codecpar->extradata);
        st->codecpar->extradata_size = 0;
64

65
        if (len < 2 || ff_alloc_extradata(st->codecpar, len + 8))
66 67
            return AVERROR_INVALIDDATA;

68 69 70
        memcpy(st->codecpar->extradata, "SEQH", 4);
        AV_WB32(st->codecpar->extradata + 4, len);
        memcpy(st->codecpar->extradata + 8, buf, len);
71

72
        /* We set codec_id to AV_CODEC_ID_NONE initially to
73 74
         * delay decoder initialization since extradata is
         * carried within the RTP stream, not SDP. Here,
75
         * by setting codec_id to AV_CODEC_ID_SVQ3, we are signalling
76
         * to the decoder that it is OK to initialize. */
77
        st->codecpar->codec_id = AV_CODEC_ID_SVQ3;
78 79 80 81 82 83 84

        return AVERROR(EAGAIN);
    }

    if (start_packet) {
        int res;

85
        ffio_free_dyn_buf(&sv->pktbuf);
86
        if ((res = avio_open_dyn_buf(&sv->pktbuf)) < 0)
87 88 89 90 91 92 93
            return res;
        sv->timestamp   = *timestamp;
    }

    if (!sv->pktbuf)
        return AVERROR_INVALIDDATA;

94
    avio_write(sv->pktbuf, buf, len);
95 96

    if (end_packet) {
97 98 99 100
        int ret = ff_rtp_finalize_packet(pkt, &sv->pktbuf, st->index);
        if (ret < 0)
            return ret;

101
        *timestamp        = sv->timestamp;
102 103 104 105 106 107
        return 0;
    }

    return AVERROR(EAGAIN);
}

108
static void svq3_close_context(PayloadContext *sv)
109
{
110
    ffio_free_dyn_buf(&sv->pktbuf);
111 112 113
}

RTPDynamicProtocolHandler ff_svq3_dynamic_handler = {
114 115
    .enc_name         = "X-SV3V-ES",
    .codec_type       = AVMEDIA_TYPE_VIDEO,
116
    .codec_id         = AV_CODEC_ID_NONE,      // see if (config_packet) above
117
    .priv_data_size   = sizeof(PayloadContext),
118
    .close            = svq3_close_context,
119
    .parse_packet     = svq3_parse_packet,
120
};