2 * DVB subtitle parser for FFmpeg
3 * Copyright (c) 2005 Ian Caulfield
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "libavutil/intreadwrite.h"
29 /* Parser (mostly) copied from dvdsub.c */
31 #define PARSE_BUF_SIZE (65536)
34 /* parser definition */
35 typedef struct DVBSubParseContext
{
39 uint8_t packet_buf
[PARSE_BUF_SIZE
];
42 static int dvbsub_parse(AVCodecParserContext
*s
,
43 AVCodecContext
*avctx
,
44 const uint8_t **poutbuf
, int *poutbuf_size
,
45 const uint8_t *buf
, int buf_size
)
47 DVBSubParseContext
*pc
= s
->priv_data
;
49 int i
, len
, buf_pos
= 0;
52 ff_dlog(avctx
, "DVB parse packet pts=%"PRIx64
", lpts=%"PRIx64
", cpts=%"PRIx64
":\n",
53 s
->pts
, s
->last_pts
, s
->cur_frame_pts
[s
->cur_frame_start_index
]);
55 for (i
=0; i
< buf_size
; i
++)
57 ff_dlog(avctx
, "%02x ", buf
[i
]);
66 *poutbuf_size
= buf_size
;
68 s
->fetch_timestamp
= 1;
70 if (s
->last_pts
!= s
->pts
&& s
->pts
!= AV_NOPTS_VALUE
) /* Start of a new packet */
72 if (pc
->packet_index
!= pc
->packet_start
)
74 ff_dlog(avctx
, "Discarding %d bytes\n",
75 pc
->packet_index
- pc
->packet_start
);
81 if (buf_size
< 2 || buf
[0] != 0x20 || buf
[1] != 0x00) {
82 ff_dlog(avctx
, "Bad packet header\n");
90 if (pc
->packet_start
!= 0)
92 if (pc
->packet_index
!= pc
->packet_start
)
94 memmove(pc
->packet_buf
, pc
->packet_buf
+ pc
->packet_start
,
95 pc
->packet_index
- pc
->packet_start
);
97 pc
->packet_index
-= pc
->packet_start
;
100 pc
->packet_start
= 0;
101 pc
->packet_index
= 0;
106 if (buf_size
- buf_pos
+ pc
->packet_index
> PARSE_BUF_SIZE
)
109 /* if not currently in a packet, pass data */
110 if (pc
->in_packet
== 0)
113 memcpy(pc
->packet_buf
+ pc
->packet_index
, buf
+ buf_pos
, buf_size
- buf_pos
);
114 pc
->packet_index
+= buf_size
- buf_pos
;
117 p_end
= pc
->packet_buf
+ pc
->packet_index
;
125 len
= AV_RB16(p
+ 4);
127 if (len
+ 6 <= p_end
- p
)
136 } else if (*p
== 0xff) {
139 ff_dlog(avctx
, "Junk at end of packet\n");
141 pc
->packet_index
= p
- pc
->packet_buf
;
145 av_log(avctx
, AV_LOG_ERROR
, "Junk in packet\n");
147 pc
->packet_index
= p
- pc
->packet_buf
;
155 *poutbuf
= pc
->packet_buf
;
156 *poutbuf_size
= out_size
;
157 pc
->packet_start
= *poutbuf_size
;
160 if (s
->pts
== AV_NOPTS_VALUE
)
161 s
->pts
= s
->last_pts
;
166 const AVCodecParser ff_dvbsub_parser
= {
167 .codec_ids
= { AV_CODEC_ID_DVB_SUBTITLE
},
168 .priv_data_size
= sizeof(DVBSubParseContext
),
169 .parser_parse
= dvbsub_parse
,