dvbsub_parser.c 4.9 KB
Newer Older
1 2
/*
 * DVB subtitle parser for FFmpeg
3
 * Copyright (c) 2005 Ian Caulfield
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * 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 22 23 24 25

#include <inttypes.h>
#include <string.h>

#include "libavutil/intreadwrite.h"
26
#include "libavutil/mem.h"
27

28
#include "avcodec.h"
29
#include "internal.h"
30 31 32 33 34 35 36 37 38 39 40 41 42 43

/* Parser (mostly) copied from dvdsub.c */

#define PARSE_BUF_SIZE  (65536)


/* parser definition */
typedef struct DVBSubParseContext {
    uint8_t *packet_buf;
    int packet_start;
    int packet_index;
    int in_packet;
} DVBSubParseContext;

44
static av_cold int dvbsub_parse_init(AVCodecParserContext *s)
45 46 47 48 49 50 51 52 53
{
    DVBSubParseContext *pc = s->priv_data;
    pc->packet_buf = av_malloc(PARSE_BUF_SIZE);

    return 0;
}

static int dvbsub_parse(AVCodecParserContext *s,
                        AVCodecContext *avctx,
54
                        const uint8_t **poutbuf, int *poutbuf_size,
55 56 57 58
                        const uint8_t *buf, int buf_size)
{
    DVBSubParseContext *pc = s->priv_data;
    uint8_t *p, *p_end;
59
    int i, len, buf_pos = 0;
60

61
    ff_dlog(avctx, "DVB parse packet pts=%"PRIx64", lpts=%"PRIx64", cpts=%"PRIx64":\n",
62 63 64 65
            s->pts, s->last_pts, s->cur_frame_pts[s->cur_frame_start_index]);

    for (i=0; i < buf_size; i++)
    {
66
        ff_dlog(avctx, "%02x ", buf[i]);
67
        if (i % 16 == 15)
68
            ff_dlog(avctx, "\n");
69 70 71
    }

    if (i % 16 != 0)
72
        ff_dlog(avctx, "\n");
73 74 75 76 77 78

    *poutbuf = NULL;
    *poutbuf_size = 0;

    s->fetch_timestamp = 1;

79
    if (s->last_pts != s->pts && s->pts != AV_NOPTS_VALUE) /* Start of a new packet */
80 81 82
    {
        if (pc->packet_index != pc->packet_start)
        {
83
            ff_dlog(avctx, "Discarding %d bytes\n",
84
                    pc->packet_index - pc->packet_start);
85 86 87 88 89 90
        }

        pc->packet_start = 0;
        pc->packet_index = 0;

        if (buf_size < 2 || buf[0] != 0x20 || buf[1] != 0x00) {
91
            ff_dlog(avctx, "Bad packet header\n");
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
            return -1;
        }

        buf_pos = 2;

        pc->in_packet = 1;
    } else {
        if (pc->packet_start != 0)
        {
            if (pc->packet_index != pc->packet_start)
            {
                memmove(pc->packet_buf, pc->packet_buf + pc->packet_start,
                            pc->packet_index - pc->packet_start);

                pc->packet_index -= pc->packet_start;
                pc->packet_start = 0;
            } else {
                pc->packet_start = 0;
                pc->packet_index = 0;
            }
        }
    }

    if (buf_size - buf_pos + pc->packet_index > PARSE_BUF_SIZE)
        return -1;

/* if not currently in a packet, discard data */
    if (pc->in_packet == 0)
        return buf_size;

    memcpy(pc->packet_buf + pc->packet_index, buf + buf_pos, buf_size - buf_pos);
    pc->packet_index += buf_size - buf_pos;

    p = pc->packet_buf;
    p_end = pc->packet_buf + pc->packet_index;

    while (p < p_end)
    {
        if (*p == 0x0f)
        {
132
            if (6 <= p_end - p)
133 134 135
            {
                len = AV_RB16(p + 4);

136
                if (len + 6 <= p_end - p)
137 138 139 140 141 142 143 144 145
                {
                    *poutbuf_size += len + 6;

                    p += len + 6;
                } else
                    break;
            } else
                break;
        } else if (*p == 0xff) {
146
            if (1 < p_end - p)
147
            {
148
                ff_dlog(avctx, "Junk at end of packet\n");
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
            }
            pc->packet_index = p - pc->packet_buf;
            pc->in_packet = 0;
            break;
        } else {
            av_log(avctx, AV_LOG_ERROR, "Junk in packet\n");

            pc->packet_index = p - pc->packet_buf;
            pc->in_packet = 0;
            break;
        }
    }

    if (*poutbuf_size > 0)
    {
        *poutbuf = pc->packet_buf;
        pc->packet_start = *poutbuf_size;
    }

168 169
    if (s->pts == AV_NOPTS_VALUE)
        s->pts = s->last_pts;
170 171 172 173

    return buf_size;
}

174
static av_cold void dvbsub_parse_close(AVCodecParserContext *s)
175 176 177 178 179
{
    DVBSubParseContext *pc = s->priv_data;
    av_freep(&pc->packet_buf);
}

180
AVCodecParser ff_dvbsub_parser = {
181
    .codec_ids      = { AV_CODEC_ID_DVB_SUBTITLE },
182 183 184 185
    .priv_data_size = sizeof(DVBSubParseContext),
    .parser_init    = dvbsub_parse_init,
    .parser_parse   = dvbsub_parse,
    .parser_close   = dvbsub_parse_close,
186
};