assenc.c 2.49 KB
Newer Older
Michael Niedermayer's avatar
Michael Niedermayer committed
1 2 3 4
/*
 * SSA/ASS muxer
 * Copyright (c) 2008 Michael Niedermayer
 *
5
 * This file is part of Libav.
Michael Niedermayer's avatar
Michael Niedermayer committed
6
 *
7
 * Libav is free software; you can redistribute it and/or
Michael Niedermayer's avatar
Michael Niedermayer committed
8 9 10 11
 * 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.
 *
12
 * Libav is distributed in the hope that it will be useful,
Michael Niedermayer's avatar
Michael Niedermayer committed
13 14 15 16 17
 * 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
18
 * License along with Libav; if not, write to the Free Software
Michael Niedermayer's avatar
Michael Niedermayer committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "avformat.h"

typedef struct ASSContext{
    unsigned int extra_index;
}ASSContext;

static int write_header(AVFormatContext *s)
{
    ASSContext *ass = s->priv_data;
    AVCodecContext *avctx= s->streams[0]->codec;
    uint8_t *last= NULL;

34
    if(s->nb_streams != 1 || avctx->codec_id != AV_CODEC_ID_SSA){
Michael Niedermayer's avatar
Michael Niedermayer committed
35 36 37 38 39 40 41 42 43 44
        av_log(s, AV_LOG_ERROR, "Exactly one ASS/SSA stream is needed.\n");
        return -1;
    }

    while(ass->extra_index < avctx->extradata_size){
        uint8_t *p  = avctx->extradata + ass->extra_index;
        uint8_t *end= strchr(p, '\n');
        if(!end) end= avctx->extradata + avctx->extradata_size;
        else     end++;

45
        avio_write(s->pb, p, end-p);
Michael Niedermayer's avatar
Michael Niedermayer committed
46 47 48 49 50 51 52
        ass->extra_index += end-p;

        if(last && !memcmp(last, "[Events]", 8))
            break;
        last=p;
    }

53
    avio_flush(s->pb);
Michael Niedermayer's avatar
Michael Niedermayer committed
54 55 56 57 58 59

    return 0;
}

static int write_packet(AVFormatContext *s, AVPacket *pkt)
{
60
    avio_write(s->pb, pkt->data, pkt->size);
Michael Niedermayer's avatar
Michael Niedermayer committed
61 62 63 64 65 66 67 68
    return 0;
}

static int write_trailer(AVFormatContext *s)
{
    ASSContext *ass = s->priv_data;
    AVCodecContext *avctx= s->streams[0]->codec;

69
    avio_write(s->pb, avctx->extradata      + ass->extra_index,
Michael Niedermayer's avatar
Michael Niedermayer committed
70 71 72 73 74
                      avctx->extradata_size - ass->extra_index);

    return 0;
}

75
AVOutputFormat ff_ass_muxer = {
76
    .name           = "ass",
77
    .long_name      = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
78 79 80
    .mime_type      = "text/x-ssa",
    .extensions     = "ass,ssa",
    .priv_data_size = sizeof(ASSContext),
81
    .subtitle_codec = AV_CODEC_ID_SSA,
82 83 84
    .write_header   = write_header,
    .write_packet   = write_packet,
    .write_trailer  = write_trailer,
Aurelien Jacobs's avatar
Aurelien Jacobs committed
85
    .flags          = AVFMT_GLOBALHEADER | AVFMT_NOTIMESTAMPS,
Michael Niedermayer's avatar
Michael Niedermayer committed
86
};