oggenc.c 10.2 KB
Newer Older
bcoudurier's avatar
bcoudurier committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Ogg muxer
 * Copyright (c) 2007 Baptiste Coudurier <baptiste dot coudurier at free dot fr>
 *
 * 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
 */

22 23 24
#include "libavutil/crc.h"
#include "libavcodec/xiph.h"
#include "libavcodec/bytestream.h"
25
#include "libavcodec/flac.h"
bcoudurier's avatar
bcoudurier committed
26
#include "avformat.h"
bcoudurier's avatar
bcoudurier committed
27
#include "internal.h"
bcoudurier's avatar
bcoudurier committed
28 29 30 31 32 33 34 35 36 37

typedef struct {
    int64_t duration;
    unsigned page_counter;
    uint8_t *header[3];
    int header_len[3];
    /** for theora granule */
    int kfgshift;
    int64_t last_kf_pts;
    int vrev;
bcoudurier's avatar
bcoudurier committed
38
    int eos;
bcoudurier's avatar
bcoudurier committed
39 40
} OGGStreamContext;

41
static void ogg_update_checksum(AVFormatContext *s, int64_t crc_offset)
bcoudurier's avatar
bcoudurier committed
42
{
43
    int64_t pos = url_ftell(s->pb);
44 45 46 47
    uint32_t checksum = get_checksum(s->pb);
    url_fseek(s->pb, crc_offset, SEEK_SET);
    put_be32(s->pb, checksum);
    url_fseek(s->pb, pos, SEEK_SET);
bcoudurier's avatar
bcoudurier committed
48 49 50 51 52 53
}

static int ogg_write_page(AVFormatContext *s, const uint8_t *data, int size,
                          int64_t granule, int stream_index, int flags)
{
    OGGStreamContext *oggstream = s->streams[stream_index]->priv_data;
54
    int64_t crc_offset;
bcoudurier's avatar
bcoudurier committed
55 56
    int page_segments, i;

57 58 59
    if (size >= 255*255) {
        granule = -1;
        size = 255*255;
bcoudurier's avatar
bcoudurier committed
60 61
    } else if (oggstream->eos)
        flags |= 4;
62

bcoudurier's avatar
bcoudurier committed
63 64
    page_segments = FFMIN((size/255)+!!size, 255);

65 66 67 68 69 70 71 72 73 74
    init_checksum(s->pb, ff_crc04C11DB7_update, 0);
    put_tag(s->pb, "OggS");
    put_byte(s->pb, 0);
    put_byte(s->pb, flags);
    put_le64(s->pb, granule);
    put_le32(s->pb, stream_index);
    put_le32(s->pb, oggstream->page_counter++);
    crc_offset = url_ftell(s->pb);
    put_le32(s->pb, 0); // crc
    put_byte(s->pb, page_segments);
bcoudurier's avatar
bcoudurier committed
75
    for (i = 0; i < page_segments-1; i++)
76
        put_byte(s->pb, 255);
bcoudurier's avatar
bcoudurier committed
77
    if (size) {
78 79
        put_byte(s->pb, size - (page_segments-1)*255);
        put_buffer(s->pb, data, size);
bcoudurier's avatar
bcoudurier committed
80 81
    }
    ogg_update_checksum(s, crc_offset);
82
    put_flush_packet(s->pb);
bcoudurier's avatar
bcoudurier committed
83 84 85
    return size;
}

86
static int ogg_build_flac_headers(AVCodecContext *avctx,
bcoudurier's avatar
bcoudurier committed
87 88 89
                                  OGGStreamContext *oggstream, int bitexact)
{
    const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT;
90 91
    enum FLACExtradataFormat format;
    uint8_t *streaminfo;
bcoudurier's avatar
bcoudurier committed
92
    uint8_t *p;
jbr's avatar
jbr committed
93

94
    if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo))
bcoudurier's avatar
bcoudurier committed
95
        return -1;
jbr's avatar
jbr committed
96 97

    // first packet: STREAMINFO
jbr's avatar
jbr committed
98 99
    oggstream->header_len[0] = 51;
    oggstream->header[0] = av_mallocz(51); // per ogg flac specs
bcoudurier's avatar
bcoudurier committed
100
    p = oggstream->header[0];
jbr's avatar
jbr committed
101 102
    if (!p)
        return AVERROR_NOMEM;
bcoudurier's avatar
bcoudurier committed
103 104 105 106 107 108 109 110
    bytestream_put_byte(&p, 0x7F);
    bytestream_put_buffer(&p, "FLAC", 4);
    bytestream_put_byte(&p, 1); // major version
    bytestream_put_byte(&p, 0); // minor version
    bytestream_put_be16(&p, 1); // headers packets without this one
    bytestream_put_buffer(&p, "fLaC", 4);
    bytestream_put_byte(&p, 0x00); // streaminfo
    bytestream_put_be24(&p, 34);
111
    bytestream_put_buffer(&p, streaminfo, FLAC_STREAMINFO_SIZE);
jbr's avatar
jbr committed
112 113

    // second packet: VorbisComment
bcoudurier's avatar
bcoudurier committed
114 115 116
    oggstream->header_len[1] = 1+3+4+strlen(vendor)+4;
    oggstream->header[1] = av_mallocz(oggstream->header_len[1]);
    p = oggstream->header[1];
jbr's avatar
jbr committed
117 118
    if (!p)
        return AVERROR_NOMEM;
bcoudurier's avatar
bcoudurier committed
119 120 121 122 123
    bytestream_put_byte(&p, 0x84); // last metadata block and vorbis comment
    bytestream_put_be24(&p, oggstream->header_len[1] - 4);
    bytestream_put_le32(&p, strlen(vendor));
    bytestream_put_buffer(&p, vendor, strlen(vendor));
    bytestream_put_le32(&p, 0); // user comment list length
jbr's avatar
jbr committed
124

bcoudurier's avatar
bcoudurier committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
    return 0;
}

static int ogg_write_header(AVFormatContext *s)
{
    OGGStreamContext *oggstream;
    int i, j;
    for (i = 0; i < s->nb_streams; i++) {
        AVStream *st = s->streams[i];
        if (st->codec->codec_type == CODEC_TYPE_AUDIO)
            av_set_pts_info(st, 64, 1, st->codec->sample_rate);
        else if (st->codec->codec_type == CODEC_TYPE_VIDEO)
            av_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
        if (st->codec->codec_id != CODEC_ID_VORBIS &&
            st->codec->codec_id != CODEC_ID_THEORA &&
            st->codec->codec_id != CODEC_ID_FLAC) {
            av_log(s, AV_LOG_ERROR, "Unsupported codec id in stream %d\n", i);
            return -1;
        }

        if (!st->codec->extradata || !st->codec->extradata_size) {
            av_log(s, AV_LOG_ERROR, "No extradata present\n");
            return -1;
        }
        oggstream = av_mallocz(sizeof(*oggstream));
        st->priv_data = oggstream;
        if (st->codec->codec_id == CODEC_ID_FLAC) {
152 153 154
            int err = ogg_build_flac_headers(st->codec, oggstream,
                                             st->codec->flags & CODEC_FLAG_BITEXACT);
            if (err) {
155
                av_log(s, AV_LOG_ERROR, "Error writing FLAC headers\n");
bcoudurier's avatar
bcoudurier committed
156
                av_freep(&st->priv_data);
157
                return err;
bcoudurier's avatar
bcoudurier committed
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
            }
        } else {
            if (ff_split_xiph_headers(st->codec->extradata, st->codec->extradata_size,
                                      st->codec->codec_id == CODEC_ID_VORBIS ? 30 : 42,
                                      oggstream->header, oggstream->header_len) < 0) {
                av_log(s, AV_LOG_ERROR, "Extradata corrupted\n");
                av_freep(&st->priv_data);
                return -1;
            }
            if (st->codec->codec_id == CODEC_ID_THEORA) {
                /** KFGSHIFT is the width of the less significant section of the granule position
                    The less significant section is the frame count since the last keyframe */
                oggstream->kfgshift = ((oggstream->header[0][40]&3)<<3)|(oggstream->header[0][41]>>5);
                oggstream->vrev = oggstream->header[0][9];
                av_log(s, AV_LOG_DEBUG, "theora kfgshift %d, vrev %d\n",
                       oggstream->kfgshift, oggstream->vrev);
            }
        }
    }
    for (i = 0; i < 3; i++) {
        for (j = 0; j < s->nb_streams; j++) {
            AVStream *st = s->streams[j];
            OGGStreamContext *oggstream = st->priv_data;
            if (oggstream && oggstream->header_len[i]) {
                ogg_write_page(s, oggstream->header[i], oggstream->header_len[i],
                               0, st->index, i ? 0 : 2); // bos
            }
        }
    }
    return 0;
}

static int ogg_write_packet(AVFormatContext *s, AVPacket *pkt)
{
    AVStream *st = s->streams[pkt->stream_index];
    OGGStreamContext *oggstream = st->priv_data;
    uint8_t *ptr = pkt->data;
    int ret, size = pkt->size;
    int64_t granule;

    if (st->codec->codec_id == CODEC_ID_THEORA) {
        int64_t pts = oggstream->vrev < 1 ? pkt->pts : pkt->pts + pkt->duration;
        int pframe_count;
        if (pkt->flags & PKT_FLAG_KEY)
            oggstream->last_kf_pts = pts;
        pframe_count = pts - oggstream->last_kf_pts;
        // prevent frame count from overflow if key frame flag is not set
        if (pframe_count >= (1<<oggstream->kfgshift)) {
            oggstream->last_kf_pts += pframe_count;
            pframe_count = 0;
        }
        granule = (oggstream->last_kf_pts<<oggstream->kfgshift) | pframe_count;
    } else
        granule = pkt->pts + pkt->duration;
    oggstream->duration = granule;
    do {
        ret = ogg_write_page(s, ptr, size, granule, pkt->stream_index, ptr != pkt->data);
        ptr  += ret; size -= ret;
    } while (size > 0 || ret == 255*255); // need to output a last nil page

    return 0;
}

221 222 223 224 225 226 227 228 229 230 231 232
static int ogg_compare_granule(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
{
    AVStream *st2 = s->streams[next->stream_index];
    AVStream *st  = s->streams[pkt ->stream_index];

    int64_t next_granule = av_rescale_q(next->pts + next->duration,
                                        st2->time_base, AV_TIME_BASE_Q);
    int64_t cur_granule  = av_rescale_q(pkt ->pts + pkt ->duration,
                                        st ->time_base, AV_TIME_BASE_Q);
    return next_granule > cur_granule;
}

bcoudurier's avatar
bcoudurier committed
233
static int ogg_interleave_per_granule(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush)
bcoudurier's avatar
bcoudurier committed
234
{
235
    AVPacketList *pktl;
bcoudurier's avatar
bcoudurier committed
236 237 238 239 240
    int stream_count = 0;
    int streams[MAX_STREAMS] = {0};
    int interleaved = 0;

    if (pkt) {
241
        ff_interleave_add_packet(s, pkt, ogg_compare_granule);
bcoudurier's avatar
bcoudurier committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
    }

    pktl = s->packet_buffer;
    while (pktl) {
        if (streams[pktl->pkt.stream_index] == 0)
            stream_count++;
        streams[pktl->pkt.stream_index]++;
        // need to buffer at least one packet to set eos flag
        if (streams[pktl->pkt.stream_index] == 2)
            interleaved++;
        pktl = pktl->next;
    }

    if ((s->nb_streams == stream_count && interleaved == stream_count) ||
        (flush && stream_count)) {
        pktl= s->packet_buffer;
        *out= pktl->pkt;
        s->packet_buffer = pktl->next;
        if (flush && streams[out->stream_index] == 1) {
            OGGStreamContext *ogg = s->streams[out->stream_index]->priv_data;
            ogg->eos = 1;
        }
        av_freep(&pktl);
        return 1;
    } else {
        av_init_packet(out);
        return 0;
    }
}
bcoudurier's avatar
bcoudurier committed
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288

static int ogg_write_trailer(AVFormatContext *s)
{
    int i;
    for (i = 0; i < s->nb_streams; i++) {
        AVStream *st = s->streams[i];
        OGGStreamContext *oggstream = st->priv_data;
        if (st->codec->codec_id == CODEC_ID_FLAC) {
            av_free(oggstream->header[0]);
            av_free(oggstream->header[1]);
        }
        av_freep(&st->priv_data);
    }
    return 0;
}

AVOutputFormat ogg_muxer = {
    "ogg",
289
    NULL_IF_CONFIG_SMALL("Ogg"),
bcoudurier's avatar
bcoudurier committed
290
    "application/ogg",
bcoudurier's avatar
bcoudurier committed
291
    "ogg,ogv",
bcoudurier's avatar
bcoudurier committed
292 293 294 295 296 297
    0,
    CODEC_ID_FLAC,
    CODEC_ID_THEORA,
    ogg_write_header,
    ogg_write_packet,
    ogg_write_trailer,
bcoudurier's avatar
bcoudurier committed
298
    .interleave_packet = ogg_interleave_per_granule,
bcoudurier's avatar
bcoudurier committed
299
};