2007-08-05 12:11:34 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2011-06-04 11:58:23 +00:00
|
|
|
|
|
|
|
#include "libavutil/mathematics.h"
|
2011-02-07 13:37:08 +00:00
|
|
|
#include "libavutil/imgutils.h"
|
2007-08-05 12:11:09 +00:00
|
|
|
#include "avcodec.h"
|
2009-04-13 16:20:26 +00:00
|
|
|
#include "get_bits.h"
|
2007-08-05 12:11:09 +00:00
|
|
|
#include "bytestream.h"
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_init(AVCodecContext *avctx) {
|
2007-08-05 12:11:09 +00:00
|
|
|
avctx->pix_fmt = PIX_FMT_PAL8;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-05 12:11:11 +00:00
|
|
|
static const uint8_t tc_offsets[9] = { 0, 1, 3, 4, 6, 7, 9, 10, 11 };
|
2009-02-09 00:18:26 +00:00
|
|
|
static const uint8_t tc_muls[9] = { 10, 6, 10, 6, 10, 10, 10, 10, 1 };
|
2007-08-05 12:11:11 +00:00
|
|
|
|
2009-08-15 09:12:58 +00:00
|
|
|
static int64_t parse_timecode(const uint8_t *buf, int64_t packet_time) {
|
2007-08-05 12:11:11 +00:00
|
|
|
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];
|
|
|
|
}
|
2009-08-15 09:12:58 +00:00
|
|
|
return ms - packet_time;
|
2007-08-05 12:11:11 +00:00
|
|
|
}
|
|
|
|
|
2007-08-05 12:11:09 +00:00
|
|
|
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
2009-04-07 15:59:50 +00:00
|
|
|
AVPacket *avpkt) {
|
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2007-08-05 12:11:09 +00:00
|
|
|
AVSubtitle *sub = data;
|
2008-02-01 03:26:31 +00:00
|
|
|
const uint8_t *buf_end = buf + buf_size;
|
2007-08-05 12:11:09 +00:00
|
|
|
uint8_t *bitmap;
|
2011-05-02 16:55:02 +00:00
|
|
|
int w, h, x, y, i;
|
2009-08-15 09:12:58 +00:00
|
|
|
int64_t packet_time = 0;
|
2007-08-05 12:11:09 +00:00
|
|
|
GetBitContext gb;
|
2011-04-27 16:39:57 +00:00
|
|
|
int has_alpha = avctx->codec_tag == MKTAG('D','X','S','A');
|
2007-08-05 12:11:09 +00:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2007-08-05 12:11:11 +00:00
|
|
|
// read start and end time
|
|
|
|
if (buf[0] != '[' || buf[13] != '-' || buf[26] != ']') {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "invalid time code\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-08-15 09:12:58 +00:00
|
|
|
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);
|
2007-08-05 12:11:11 +00:00
|
|
|
buf += 27;
|
|
|
|
|
2007-08-05 12:11:09 +00:00
|
|
|
// read header
|
|
|
|
w = bytestream_get_le16(&buf);
|
|
|
|
h = bytestream_get_le16(&buf);
|
2010-09-07 19:15:29 +00:00
|
|
|
if (av_image_check_size(w, h, 0, avctx) < 0)
|
2007-08-05 12:11:09 +00:00
|
|
|
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);
|
2011-05-02 16:55:02 +00:00
|
|
|
// The following value is supposed to indicate the start offset
|
|
|
|
// (relative to the palette) of the data for the second field,
|
|
|
|
// however there are files where it has a bogus value and thus
|
|
|
|
// we just ignore it
|
|
|
|
bytestream_get_le16(&buf);
|
2007-08-05 12:11:09 +00:00
|
|
|
|
|
|
|
// allocate sub and set values
|
2009-08-15 00:58:26 +00:00
|
|
|
sub->rects = av_mallocz(sizeof(*sub->rects));
|
|
|
|
sub->rects[0] = av_mallocz(sizeof(*sub->rects[0]));
|
|
|
|
sub->num_rects = 1;
|
2009-01-03 17:54:48 +00:00
|
|
|
sub->rects[0]->x = x; sub->rects[0]->y = y;
|
|
|
|
sub->rects[0]->w = w; sub->rects[0]->h = h;
|
2009-07-26 23:08:04 +00:00
|
|
|
sub->rects[0]->type = SUBTITLE_BITMAP;
|
2009-01-03 19:17:18 +00:00
|
|
|
sub->rects[0]->pict.linesize[0] = w;
|
|
|
|
sub->rects[0]->pict.data[0] = av_malloc(w * h);
|
2009-01-03 17:54:48 +00:00
|
|
|
sub->rects[0]->nb_colors = 4;
|
2009-08-20 18:54:50 +00:00
|
|
|
sub->rects[0]->pict.data[1] = av_mallocz(AVPALETTE_SIZE);
|
2007-08-05 12:11:09 +00:00
|
|
|
|
|
|
|
// read palette
|
2009-01-03 17:54:48 +00:00
|
|
|
for (i = 0; i < sub->rects[0]->nb_colors; i++)
|
2009-01-03 19:17:18 +00:00
|
|
|
((uint32_t*)sub->rects[0]->pict.data[1])[i] = bytestream_get_be24(&buf);
|
2007-08-05 12:11:24 +00:00
|
|
|
// make all except background (first entry) non-transparent
|
2011-04-27 16:39:57 +00:00
|
|
|
for (i = 0; i < sub->rects[0]->nb_colors; i++)
|
|
|
|
((uint32_t*)sub->rects[0]->pict.data[1])[i] |= (has_alpha ? *buf++ : (i ? 0xff : 0)) << 24;
|
2007-08-05 12:11:09 +00:00
|
|
|
|
|
|
|
// process RLE-compressed data
|
2011-05-02 16:55:02 +00:00
|
|
|
init_get_bits(&gb, buf, (buf_end - buf) * 8);
|
2009-01-03 19:17:18 +00:00
|
|
|
bitmap = sub->rects[0]->pict.data[0];
|
2007-08-05 12:11:09 +00:00
|
|
|
for (y = 0; y < h; y++) {
|
2007-08-05 12:11:26 +00:00
|
|
|
// interlaced: do odd lines
|
2009-01-03 19:17:18 +00:00
|
|
|
if (y == (h + 1) / 2) bitmap = sub->rects[0]->pict.data[0] + w;
|
2007-08-05 12:11:09 +00:00
|
|
|
for (x = 0; x < w; ) {
|
|
|
|
int log2 = ff_log2_tab[show_bits(&gb, 8)];
|
2007-08-05 12:11:20 +00:00
|
|
|
int run = get_bits(&gb, 14 - 4 * (log2 >> 1));
|
2007-12-03 13:33:48 +00:00
|
|
|
int color = get_bits(&gb, 2);
|
2007-08-05 12:11:09 +00:00
|
|
|
run = FFMIN(run, w - x);
|
|
|
|
// run length 0 means till end of row
|
|
|
|
if (!run) run = w - x;
|
2007-12-03 13:33:48 +00:00
|
|
|
memset(bitmap, color, run);
|
2007-08-05 12:11:09 +00:00
|
|
|
bitmap += run;
|
|
|
|
x += run;
|
|
|
|
}
|
2007-08-05 12:11:26 +00:00
|
|
|
// interlaced, skip every second line
|
|
|
|
bitmap += w;
|
2007-08-05 12:11:09 +00:00
|
|
|
align_get_bits(&gb);
|
|
|
|
}
|
|
|
|
*data_size = 1;
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_xsub_decoder = {
|
2011-08-03 21:27:50 +00:00
|
|
|
.name = "xsub",
|
|
|
|
.type = AVMEDIA_TYPE_SUBTITLE,
|
|
|
|
.id = CODEC_ID_XSUB,
|
|
|
|
.init = decode_init,
|
|
|
|
.decode = decode_frame,
|
2008-06-12 21:50:13 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("XSUB"),
|
2007-08-05 12:11:09 +00:00
|
|
|
};
|