Skip to content
Snippets Groups Projects
oggdec.c 18.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*
     * Ogg bitstream support
     * Luca Barbato <lu_zero@gentoo.org>
     * Based on tcvp implementation
     */
    
    
        Copyright (C) 2005  Michael Ahlberg, Måns Rullgård
    
        Permission is hereby granted, free of charge, to any person
        obtaining a copy of this software and associated documentation
        files (the "Software"), to deal in the Software without
        restriction, including without limitation the rights to use, copy,
        modify, merge, publish, distribute, sublicense, and/or sell copies
        of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
    
        The above copyright notice and this permission notice shall be
        included in all copies or substantial portions of the Software.
    
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
        DEALINGS IN THE SOFTWARE.
    
    #include "oggdec.h"
    
    #include "internal.h"
    
    #include "vorbiscomment.h"
    
    
    #define MAX_PAGE_SIZE 65307
    #define DECODER_BUFFER_SIZE MAX_PAGE_SIZE
    
    
    static const struct ogg_codec * const ogg_codecs[] = {
    
        &ff_dirac_codec,
    
        &ff_speex_codec,
        &ff_vorbis_codec,
        &ff_theora_codec,
        &ff_flac_codec,
    
        &ff_celt_codec,
    
        &ff_old_dirac_codec,
    
        &ff_old_flac_codec,
        &ff_ogm_video_codec,
        &ff_ogm_audio_codec,
        &ff_ogm_text_codec,
        &ff_ogm_old_codec,
    
        NULL
    };
    
    //FIXME We could avoid some structure duplication
    
    static int ogg_save(AVFormatContext *s)
    
        struct ogg *ogg = s->priv_data;
        struct ogg_state *ost =
    
            av_malloc(sizeof(*ost) + (ogg->nstreams - 1) * sizeof(*ogg->streams));
    
        ost->pos      = avio_tell(s->pb);
        ost->curidx   = ogg->curidx;
        ost->next     = ogg->state;
    
        ost->nstreams = ogg->nstreams;
    
        memcpy(ost->streams, ogg->streams, ogg->nstreams * sizeof(*ogg->streams));
    
    
        for (i = 0; i < ogg->nstreams; i++) {
    
            struct ogg_stream *os = ogg->streams + i;
    
            os->buf = av_mallocz(os->bufsize + FF_INPUT_BUFFER_PADDING_SIZE);
            memcpy(os->buf, ost->streams[i].buf, os->bufpos);
    
    static int ogg_restore(AVFormatContext *s, int discard)
    
        struct ogg *ogg = s->priv_data;
    
        AVIOContext *bc = s->pb;
    
        struct ogg_state *ost = ogg->state;
    
        if (!discard) {
    
            struct ogg_stream *old_streams = ogg->streams;
    
    
                av_free(ogg->streams[i].buf);
    
            avio_seek(bc, ost->pos, SEEK_SET);
            ogg->curidx   = ost->curidx;
    
            ogg->nstreams = ost->nstreams;
    
            ogg->streams  = av_realloc(ogg->streams,
                                       ogg->nstreams * sizeof(*ogg->streams));
    
    
            if (ogg->streams) {
                memcpy(ogg->streams, ost->streams,
                       ost->nstreams * sizeof(*ogg->streams));
            } else {
                av_free(old_streams);
                ogg->nstreams = 0;
            }
    
        av_free(ost);
    
    static int ogg_reset(struct ogg *ogg)
    
        for (i = 0; i < ogg->nstreams; i++) {
    
            struct ogg_stream *os = ogg->streams + i;
    
            os->bufpos     = 0;
            os->pstart     = 0;
            os->psize      = 0;
            os->granule    = -1;
            os->lastpts    = AV_NOPTS_VALUE;
            os->lastdts    = AV_NOPTS_VALUE;
            os->sync_pos   = -1;
            os->page_pos   = 0;
            os->nsegs      = 0;
            os->segp       = 0;
    
    static const struct ogg_codec *ogg_find_codec(uint8_t *buf, int size)
    
    {
        int i;
    
        for (i = 0; ogg_codecs[i]; i++)
            if (size >= ogg_codecs[i]->magicsize &&
    
                !memcmp(buf, ogg_codecs[i]->magic, ogg_codecs[i]->magicsize))
    
    static int ogg_new_stream(AVFormatContext *s, uint32_t serial, int new_avstream)
    
        struct ogg *ogg = s->priv_data;
    
        int idx         = ogg->nstreams++;
    
        struct ogg_stream *os;
    
        os = av_realloc(ogg->streams, ogg->nstreams * sizeof(*ogg->streams));
    
        if (!os)
            return AVERROR(ENOMEM);
    
        ogg->streams = os;
    
    
        memset(ogg->streams + idx, 0, sizeof(*ogg->streams));
    
        os                = ogg->streams + idx;
        os->serial        = serial;
        os->bufsize       = DECODER_BUFFER_SIZE;
        os->buf           = av_malloc(os->bufsize + FF_INPUT_BUFFER_PADDING_SIZE);
        os->header        = -1;
    
        os->start_granule = OGG_NOGRANULE_VALUE;
    
        if (new_avstream) {
    
            st = avformat_new_stream(s, NULL);
    
            if (!st)
                return AVERROR(ENOMEM);
    
            avpriv_set_pts_info(st, 64, 1, 1000000);
    
    static int ogg_new_buf(struct ogg *ogg, int idx)
    
        struct ogg_stream *os = ogg->streams + idx;
    
        uint8_t *nb = av_malloc(os->bufsize + FF_INPUT_BUFFER_PADDING_SIZE);
    
        int size = os->bufpos - os->pstart;
    
    
        if (os->buf) {
    
            memcpy(nb, os->buf + os->pstart, size);
            av_free(os->buf);
        }
    
    
        os->buf    = nb;
    
        os->bufpos = size;
        os->pstart = 0;
    
        return 0;
    }
    
    
    static int ogg_read_page(AVFormatContext *s, int *str)
    
        AVIOContext *bc = s->pb;
    
        struct ogg *ogg = s->priv_data;
        struct ogg_stream *os;
    
        int flags, nsegs;
        uint64_t gp;
        uint32_t serial;
        int size, idx;
    
        uint8_t sync[4];
    
        ret = avio_read(bc, sync, 4);
        if (ret < 4)
            return ret < 0 ? ret : AVERROR_EOF;
    
            int c;
    
            if (sync[sp & 3] == 'O' &&
                sync[(sp + 1) & 3] == 'g' &&
                sync[(sp + 2) & 3] == 'g' && sync[(sp + 3) & 3] == 'S')
                break;
    
    
    Anton Khirnov's avatar
    Anton Khirnov committed
            if (bc->eof_reached)
    
        } while (i++ < MAX_PAGE_SIZE);
    
        if (i >= MAX_PAGE_SIZE) {
            av_log(s, AV_LOG_INFO, "cannot find sync word\n");
    
        if (avio_r8(bc) != 0)      /* version */
    
        flags  = avio_r8(bc);
        gp     = avio_rl64(bc);
        serial = avio_rl32(bc);
    
    Mans Rullgard's avatar
    Mans Rullgard committed
        avio_skip(bc, 8); /* seq, crc */
    
        nsegs  = avio_r8(bc);
    
        idx = ogg_find_stream(ogg, serial);
        if (idx < 0) {
    
                int n;
    
                for (n = 0; n < ogg->nstreams; n++) {
                    av_freep(&ogg->streams[n].buf);
    
                    if (!ogg->state ||
                        ogg->state->streams[n].private != ogg->streams[n].private)
    
                        av_freep(&ogg->streams[n].private);
    
                ogg->curidx   = -1;
                ogg->nstreams = 0;
    
                idx = ogg_new_stream(s, serial, 0);
            } else {
                idx = ogg_new_stream(s, serial, 1);
    
        os->page_pos = avio_tell(bc) - 27;
    
        if (os->psize > 0)
    
            ogg_new_buf(ogg, idx);
    
    
        ret = avio_read(bc, os->segments, nsegs);
        if (ret < nsegs)
            return ret < 0 ? ret : AVERROR_EOF;
    
        os->segp  = 0;
    
    
        size = 0;
        for (i = 0; i < nsegs; i++)
            size += os->segments[i];
    
    
        if (flags & OGG_FLAG_CONT || os->incomplete) {
            if (!os->psize) {
                while (os->segp < os->nsegs) {
    
                    int seg = os->segments[os->segp++];
                    os->pstart += seg;
                    if (seg < 255)
    
        } else {
            os->psize    = 0;
    
        if (os->bufsize - os->bufpos < size) {
            uint8_t *nb = av_malloc((os->bufsize *= 2) + FF_INPUT_BUFFER_PADDING_SIZE);
    
            if (!nb)
                return AVERROR(ENOMEM);
    
            memcpy(nb, os->buf, os->bufpos);
            av_free(os->buf);
    
        ret = avio_read(bc, os->buf + os->bufpos, size);
        if (ret < size)
            return ret < 0 ? ret : AVERROR_EOF;
    
        os->flags   = flags;
    
        memset(os->buf + os->bufpos, 0, FF_INPUT_BUFFER_PADDING_SIZE);
    
    static int ogg_packet(AVFormatContext *s, int *str, int *dstart, int *dsize,
                          int64_t *fpos)
    
        struct ogg *ogg = s->priv_data;
    
        struct ogg_stream *os;
    
        int segp     = 0, psize = 0;
    
        av_dlog(s, "ogg_packet: curidx=%i\n", ogg->curidx);
    
            while (idx < 0) {
    
                ret = ogg_read_page(s, &idx);
                if (ret < 0)
                    return ret;
    
            av_dlog(s, "ogg_packet: idx=%d pstart=%d psize=%d segp=%d nsegs=%d\n",
    
                    idx, os->pstart, os->psize, os->segp, os->nsegs);
    
    
            if (!os->codec) {
                if (os->header < 0) {
                    os->codec = ogg_find_codec(os->buf, os->bufpos);
                    if (!os->codec) {
    
                        av_log(s, AV_LOG_WARNING, "Codec not found\n");
    
                } else {
    
            segp  = os->segp;
    
            while (os->segp < os->nsegs) {
    
                int ss = os->segments[os->segp++];
                os->psize += ss;
    
                if (ss < 255) {
    
            if (!complete && os->segp == os->nsegs) {
                ogg->curidx    = -1;
    
        } while (!complete);
    
        av_dlog(s, "ogg_packet: idx %i, frame size %i, start %i\n",
    
            av_log(s, AV_LOG_WARNING,
                   "Page at %"PRId64" is missing granule\n",
                   os->page_pos);
    
        ogg->curidx    = idx;
    
            os->header = os->codec->header(s, idx);
            if (!os->header) {
                os->segp  = segp;
    
                os->psize = psize;
    
                // We have reached the first non-header packet in this stream.
                // Unfortunately more header packets may still follow for others,
    
                // but if we continue with header parsing we may lose data packets.
    
                ogg->headers = 1;
    
    
                // Update the header state for all streams and
                // compute the data_offset.
    
                if (!s->data_offset)
                    s->data_offset = os->sync_pos;
    
                for (i = 0; i < ogg->nstreams; i++) {
                    struct ogg_stream *cur_os = ogg->streams + i;
    
                    // if we have a partial non-header packet, its start is
                    // obviously at or after the data start
                    if (cur_os->incomplete)
                        s->data_offset = FFMIN(s->data_offset, cur_os->sync_pos);
                }
    
            } else {
    
                os->pstart += os->psize;
    
                os->psize   = 0;
    
            os->pflags    = 0;
    
                os->codec->packet(s, idx);
    
            if (dstart)
                *dstart = os->pstart;
            if (dsize)
                *dsize = os->psize;
    
            os->pstart  += os->psize;
            os->psize    = 0;
    
    David Conrad's avatar
    David Conrad committed
        // determine whether there are more complete packets in this page
        // if not, the page's granule will apply to this packet
        os->page_end = 1;
        for (i = os->segp; i < os->nsegs; i++)
            if (os->segments[i] < 255) {
                os->page_end = 0;
                break;
            }
    
    
    static int ogg_get_headers(AVFormatContext *s)
    
        struct ogg *ogg = s->priv_data;
    
            ret = ogg_packet(s, NULL, NULL, NULL, NULL);
            if (ret < 0)
                return ret;
    
        } while (!ogg->headers);
    
        for (i = 0; i < ogg->nstreams; i++) {
            struct ogg_stream *os = ogg->streams + i;
    
            if (os->codec && os->codec->nb_header &&
                os->nb_header < os->codec->nb_header) {
                av_log(s, AV_LOG_ERROR,
                       "Headers mismatch for stream %d\n", i);
                return AVERROR_INVALIDDATA;
            }
    
            if (os->start_granule != OGG_NOGRANULE_VALUE)
                os->lastpts = s->streams[i]->start_time =
                    ogg_gptopts(s, i, os->start_granule, NULL);
    
        av_dlog(s, "found headers\n");
    
    static int ogg_get_length(AVFormatContext *s)
    
        struct ogg *ogg = s->priv_data;
    
        if (!s->pb->seekable)
    
    
    // already set
        if (s->duration != AV_NOPTS_VALUE)
            return 0;
    
    
        size = avio_size(s->pb);
    
        if (size < 0)
    
    Måns Rullgård's avatar
    Måns Rullgård committed
            return 0;
    
        end = size > MAX_PAGE_SIZE ? size - MAX_PAGE_SIZE : 0;
    
        ogg_save(s);
        avio_seek(s->pb, end, SEEK_SET);
    
        while (!ogg_read_page(s, &i)) {
    
            if (ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0 &&
    
                ogg->streams[i].codec) {
                s->streams[i]->duration =
    
                    ogg_gptopts(s, i, ogg->streams[i].granule, NULL);
    
                if (s->streams[i]->start_time != AV_NOPTS_VALUE)
                    s->streams[i]->duration -= s->streams[i]->start_time;
            }
    
        ogg_restore(s, 0);
    
    static int ogg_read_close(AVFormatContext *s)
    {
        struct ogg *ogg = s->priv_data;
        int i;
    
        for (i = 0; i < ogg->nstreams; i++) {
            av_free(ogg->streams[i].buf);
            av_free(ogg->streams[i].private);
        }
        av_free(ogg->streams);
        return 0;
    }
    
    
    static int ogg_read_header(AVFormatContext *s)
    
        struct ogg *ogg = s->priv_data;
    
        ogg->curidx = -1;
        //linear headers seek from start
    
        if (ret < 0) {
            ogg_read_close(s);
    
        for (i = 0; i < ogg->nstreams; i++)
            if (ogg->streams[i].header < 0)
                ogg->streams[i].codec = NULL;
    
    
        ogg_get_length(s);
    
    
        //fill the extradata in the per codec callbacks
        return 0;
    }
    
    
    static int64_t ogg_calc_pts(AVFormatContext *s, int idx, int64_t *dts)
    {
    
        struct ogg *ogg       = s->priv_data;
    
        struct ogg_stream *os = ogg->streams + idx;
    
        int64_t pts           = AV_NOPTS_VALUE;
    
    
        if (dts)
            *dts = AV_NOPTS_VALUE;
    
        if (os->lastpts != AV_NOPTS_VALUE) {
    
            pts         = os->lastpts;
    
            os->lastpts = AV_NOPTS_VALUE;
        }
        if (os->lastdts != AV_NOPTS_VALUE) {
            if (dts)
                *dts = os->lastdts;
            os->lastdts = AV_NOPTS_VALUE;
        }
        if (os->page_end) {
            if (os->granule != -1LL) {
                if (os->codec && os->codec->granule_is_start)
                    pts = ogg_gptopts(s, idx, os->granule, dts);
                else
                    os->lastpts = ogg_gptopts(s, idx, os->granule, &os->lastdts);
                os->granule = -1LL;
    
    static int ogg_read_packet(AVFormatContext *s, AVPacket *pkt)
    
        struct ogg *ogg;
        struct ogg_stream *os;
    
        int pstart, psize;
    
    David Conrad's avatar
    David Conrad committed
        int64_t fpos, pts, dts;
    
        //Get an ogg packet
    
    David Conrad's avatar
    David Conrad committed
    retry:
    
            ret = ogg_packet(s, &idx, &pstart, &psize, &fpos);
            if (ret < 0)
                return ret;
    
        } while (idx < 0 || !s->streams[idx]);
    
        os  = ogg->streams + idx;
    
    David Conrad's avatar
    David Conrad committed
        // pflags might not be set until after this
        pts = ogg_calc_pts(s, idx, &dts);
    
    
        if (os->keyframe_seek && !(os->pflags & AV_PKT_FLAG_KEY))
    
    David Conrad's avatar
    David Conrad committed
            goto retry;
        os->keyframe_seek = 0;
    
    
        ret = av_new_packet(pkt, psize);
        if (ret < 0)
            return ret;
    
        memcpy(pkt->data, os->buf + pstart, psize);
    
        pkt->pts      = pts;
        pkt->dts      = dts;
        pkt->flags    = os->pflags;
    
        pkt->pos      = fpos;
    
        return psize;
    
    static int64_t ogg_read_timestamp(AVFormatContext *s, int stream_index,
                                      int64_t *pos_arg, int64_t pos_limit)
    
        struct ogg *ogg = s->priv_data;
    
        AVIOContext *bc = s->pb;
    
        int64_t pts     = AV_NOPTS_VALUE;
        int i           = -1;
    
        avio_seek(bc, *pos_arg, SEEK_SET);
    
        while (avio_tell(bc) < pos_limit &&
               !ogg_packet(s, &i, NULL, NULL, pos_arg)) {
    
                struct ogg_stream *os = ogg->streams + stream_index;
    
                if (os->keyframe_seek && !(os->pflags & AV_PKT_FLAG_KEY))
    
    David Conrad's avatar
    David Conrad committed
                    pts = AV_NOPTS_VALUE;
    
        }
        ogg_reset(ogg);
        return pts;
    
    static int ogg_read_seek(AVFormatContext *s, int stream_index,
                             int64_t timestamp, int flags)
    
        struct ogg *ogg       = s->priv_data;
    
    David Conrad's avatar
    David Conrad committed
        struct ogg_stream *os = ogg->streams + stream_index;
        int ret;
    
        // Try seeking to a keyframe first. If this fails (very possible),
        // av_seek_frame will fall back to ignoring keyframes
    
        if (s->streams[stream_index]->codec->codec_type == AVMEDIA_TYPE_VIDEO
    
    David Conrad's avatar
    David Conrad committed
            && !(flags & AVSEEK_FLAG_ANY))
            os->keyframe_seek = 1;
    
    
        ret = ff_seek_frame_binary(s, stream_index, timestamp, flags);
    
        os  = ogg->streams + stream_index;
    
    David Conrad's avatar
    David Conrad committed
        if (ret < 0)
            os->keyframe_seek = 0;
        return ret;
    }
    
    
    static int ogg_probe(AVProbeData *p)
    {
    
        if (!memcmp("OggS", p->buf, 5) && p->buf[5] <= 0x7)
    
            return AVPROBE_SCORE_MAX;
    
        return 0;
    
        .name           = "ogg",
        .long_name      = NULL_IF_CONFIG_SMALL("Ogg"),
        .priv_data_size = sizeof(struct ogg),
        .read_probe     = ogg_probe,
        .read_header    = ogg_read_header,
        .read_packet    = ogg_read_packet,
        .read_close     = ogg_read_close,
        .read_seek      = ogg_read_seek,
        .read_timestamp = ogg_read_timestamp,
        .extensions     = "ogg",
        .flags          = AVFMT_GENERIC_INDEX,