oggparseskeleton.c 3.26 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
/*
 * Copyright (C) 2010 David Conrad
 *
 * 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
 */

#include "libavcodec/bytestream.h"
#include "avformat.h"
23
#include "internal.h"
24 25 26 27 28 29 30 31 32
#include "oggdec.h"

static int skeleton_header(AVFormatContext *s, int idx)
{
    struct ogg *ogg = s->priv_data;
    struct ogg_stream *os = ogg->streams + idx;
    AVStream *st = s->streams[idx];
    uint8_t *buf = os->buf + os->pstart;
    int version_major, version_minor;
33 34
    int64_t start_num, start_den;
    uint64_t start_granule;
35 36
    int target_idx, start_time;

37
    st->codec->codec_type = AVMEDIA_TYPE_DATA;
38

39 40 41
    if ((os->flags & OGG_FLAG_EOS) && os->psize == 0)
        return 1;

42 43 44 45 46 47 48 49 50 51
    if (os->psize < 8)
        return -1;

    if (!strncmp(buf, "fishead", 8)) {
        if (os->psize < 64)
            return -1;

        version_major = AV_RL16(buf+8);
        version_minor = AV_RL16(buf+10);

52
        if (version_major != 3 && version_major != 4) {
53 54 55 56 57 58 59 60 61 62 63 64 65
            av_log(s, AV_LOG_WARNING, "Unknown skeleton version %d.%d\n",
                   version_major, version_minor);
            return -1;
        }

        // This is the overall start time. We use it for the start time of
        // of the skeleton stream since if left unset lavf assumes 0,
        // which we don't want since skeleton is timeless
        // FIXME: the real meaning of this field is "start playback at
        // this time which can be in the middle of a packet
        start_num = AV_RL64(buf+12);
        start_den = AV_RL64(buf+20);

66
        if (start_den > 0 && start_num > 0) {
Ronald S. Bultje's avatar
Ronald S. Bultje committed
67
            int base_den;
68
            av_reduce(&start_time, &base_den, start_num, start_den, INT_MAX);
69
            avpriv_set_pts_info(st, 64, 1, base_den);
70
            os->lastpts =
71 72 73 74 75 76 77 78
            st->start_time = start_time;
        }
    } else if (!strncmp(buf, "fisbone", 8)) {
        if (os->psize < 52)
            return -1;

        target_idx = ogg_find_stream(ogg, AV_RL32(buf+12));
        start_granule = AV_RL64(buf+36);
79 80 81 82 83
        if (target_idx < 0) {
            av_log(s, AV_LOG_WARNING, "Serial number in fisbone doesn't match any stream\n");
            return 1;
        }
        os = ogg->streams + target_idx;
84
        if (os->start_granule != OGG_NOGRANULE_VALUE) {
85
            av_log(s, AV_LOG_WARNING, "Multiple fisbone for the same stream\n");
86 87
            return 1;
        }
88
        if (start_granule != OGG_NOGRANULE_VALUE) {
89
            os->start_granule = start_granule;
90 91 92 93 94 95 96 97 98 99
        }
    }

    return 1;
}

const struct ogg_codec ff_skeleton_codec = {
    .magic = "fishead",
    .magicsize = 8,
    .header = skeleton_header,
100
    .nb_header = 0,
101
};