xsubdec.c 4.8 KB
Newer Older
R
Reimar Döffinger 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * XSUB subtitle decoder
 * Copyright (c) 2007 Reimar Döffinger
 *
 * 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
 */
21
#include "libavcore/imgutils.h"
22
#include "avcodec.h"
23
#include "get_bits.h"
24 25
#include "bytestream.h"

26
static av_cold int decode_init(AVCodecContext *avctx) {
27 28 29 30
    avctx->pix_fmt = PIX_FMT_PAL8;
    return 0;
}

31
static const uint8_t tc_offsets[9] = { 0, 1, 3, 4, 6, 7, 9, 10, 11 };
32
static const uint8_t tc_muls[9] = { 10, 6, 10, 6, 10, 10, 10, 10, 1 };
33

34
static int64_t parse_timecode(const uint8_t *buf, int64_t packet_time) {
35 36 37 38 39 40 41 42 43
    int i;
    int64_t ms = 0;
    if (buf[2] != ':' || buf[5] != ':' || buf[8] != '.')
        return AV_NOPTS_VALUE;
    for (i = 0; i < sizeof(tc_offsets); i++) {
        uint8_t c = buf[tc_offsets[i]] - '0';
        if (c > 9) return AV_NOPTS_VALUE;
        ms = (ms + c) * tc_muls[i];
    }
44
    return ms - packet_time;
45 46
}

47
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
48 49 50
                        AVPacket *avpkt) {
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
51
    AVSubtitle *sub = data;
M
consts  
Michael Niedermayer 已提交
52
    const uint8_t *buf_end = buf + buf_size;
53 54
    uint8_t *bitmap;
    int w, h, x, y, rlelen, i;
55
    int64_t packet_time = 0;
56 57
    GetBitContext gb;

58
    memset(sub, 0, sizeof(*sub));
59

60 61 62 63 64 65
    // check that at least header fits
    if (buf_size < 27 + 7 * 2 + 4 * 3) {
        av_log(avctx, AV_LOG_ERROR, "coded frame too small\n");
        return -1;
    }

66 67 68 69 70
    // read start and end time
    if (buf[0] != '[' || buf[13] != '-' || buf[26] != ']') {
        av_log(avctx, AV_LOG_ERROR, "invalid time code\n");
        return -1;
    }
71 72 73 74
    if (avpkt->pts != AV_NOPTS_VALUE)
        packet_time = av_rescale_q(avpkt->pts, AV_TIME_BASE_Q, (AVRational){1, 1000});
    sub->start_display_time = parse_timecode(buf +  1, packet_time);
    sub->end_display_time   = parse_timecode(buf + 14, packet_time);
75 76
    buf += 27;

77 78 79
    // read header
    w = bytestream_get_le16(&buf);
    h = bytestream_get_le16(&buf);
80
    if (av_check_image_size(w, h, 0, avctx) < 0)
81 82 83 84 85 86 87 88 89
        return -1;
    x = bytestream_get_le16(&buf);
    y = bytestream_get_le16(&buf);
    // skip bottom right position, it gives no new information
    bytestream_get_le16(&buf);
    bytestream_get_le16(&buf);
    rlelen = bytestream_get_le16(&buf);

    // allocate sub and set values
R
Reimar Döffinger 已提交
90 91 92
    sub->rects =  av_mallocz(sizeof(*sub->rects));
    sub->rects[0] = av_mallocz(sizeof(*sub->rects[0]));
    sub->num_rects = 1;
93 94
    sub->rects[0]->x = x; sub->rects[0]->y = y;
    sub->rects[0]->w = w; sub->rects[0]->h = h;
95
    sub->rects[0]->type = SUBTITLE_BITMAP;
96 97
    sub->rects[0]->pict.linesize[0] = w;
    sub->rects[0]->pict.data[0] = av_malloc(w * h);
98
    sub->rects[0]->nb_colors = 4;
99
    sub->rects[0]->pict.data[1] = av_mallocz(AVPALETTE_SIZE);
100 101

    // read palette
102
    for (i = 0; i < sub->rects[0]->nb_colors; i++)
103
        ((uint32_t*)sub->rects[0]->pict.data[1])[i] = bytestream_get_be24(&buf);
104
    // make all except background (first entry) non-transparent
105
    for (i = 1; i < sub->rects[0]->nb_colors; i++)
106
        ((uint32_t*)sub->rects[0]->pict.data[1])[i] |= 0xff000000;
107 108 109 110

    // process RLE-compressed data
    rlelen = FFMIN(rlelen, buf_end - buf);
    init_get_bits(&gb, buf, rlelen * 8);
111
    bitmap = sub->rects[0]->pict.data[0];
112
    for (y = 0; y < h; y++) {
R
Reimar Döffinger 已提交
113
        // interlaced: do odd lines
114
        if (y == (h + 1) / 2) bitmap = sub->rects[0]->pict.data[0] + w;
115 116
        for (x = 0; x < w; ) {
            int log2 = ff_log2_tab[show_bits(&gb, 8)];
117
            int run = get_bits(&gb, 14 - 4 * (log2 >> 1));
D
Diego Biurrun 已提交
118
            int color = get_bits(&gb, 2);
119 120 121
            run = FFMIN(run, w - x);
            // run length 0 means till end of row
            if (!run) run = w - x;
D
Diego Biurrun 已提交
122
            memset(bitmap, color, run);
123 124 125
            bitmap += run;
            x += run;
        }
R
Reimar Döffinger 已提交
126 127
        // interlaced, skip every second line
        bitmap += w;
128 129 130 131 132 133 134 135
        align_get_bits(&gb);
    }
    *data_size = 1;
    return buf_size;
}

AVCodec xsub_decoder = {
    "xsub",
136
    AVMEDIA_TYPE_SUBTITLE,
137 138 139 140 141 142
    CODEC_ID_XSUB,
    0,
    decode_init,
    NULL,
    NULL,
    decode_frame,
143
    .long_name = NULL_IF_CONFIG_SMALL("XSUB"),
144
};