FFmpeg
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
libavcodec
dvbsub_parser.c
Go to the documentation of this file.
1
/*
2
* DVB subtitle parser for FFmpeg
3
* Copyright (c) 2005 Ian Caulfield
4
*
5
* This file is part of FFmpeg.
6
*
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.
11
*
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.
16
*
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
20
*/
21
22
#include <inttypes.h>
23
#include <string.h>
24
25
#include "
libavutil/intreadwrite.h
"
26
#include "
libavutil/mem.h
"
27
28
#include "
avcodec.h
"
29
#include "
internal.h
"
30
31
/* Parser (mostly) copied from dvdsub.c */
32
33
#define PARSE_BUF_SIZE (65536)
34
35
36
/* parser definition */
37
typedef
struct
DVBSubParseContext
{
38
uint8_t
*
packet_buf
;
39
int
packet_start
;
40
int
packet_index
;
41
int
in_packet
;
42
}
DVBSubParseContext
;
43
44
static
av_cold
int
dvbsub_parse_init
(
AVCodecParserContext
*
s
)
45
{
46
DVBSubParseContext
*pc = s->
priv_data
;
47
pc->
packet_buf
=
av_malloc
(
PARSE_BUF_SIZE
);
48
49
return
0;
50
}
51
52
static
int
dvbsub_parse
(
AVCodecParserContext
*
s
,
53
AVCodecContext
*avctx,
54
const
uint8_t
**poutbuf,
int
*poutbuf_size,
55
const
uint8_t
*
buf
,
int
buf_size)
56
{
57
DVBSubParseContext
*pc = s->
priv_data
;
58
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
s->
pts
, s->
last_pts
, s->
cur_frame_pts
[s->
cur_frame_start_index
]);
63
64
for
(i=0; i < buf_size; i++)
65
{
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
*poutbuf =
NULL
;
75
*poutbuf_size = 0;
76
77
s->
fetch_timestamp
= 1;
78
79
if
(s->
last_pts
!= s->
pts
&& s->
pts
!=
AV_NOPTS_VALUE
)
/* Start of a new packet */
80
{
81
if
(pc->
packet_index
!= pc->
packet_start
)
82
{
83
ff_dlog
(avctx,
"Discarding %d bytes\n"
,
84
pc->
packet_index
- pc->
packet_start
);
85
}
86
87
pc->
packet_start
= 0;
88
pc->
packet_index
= 0;
89
90
if
(buf_size < 2 || buf[0] != 0x20 || buf[1] != 0x00) {
91
ff_dlog
(avctx,
"Bad packet header\n"
);
92
return
-1;
93
}
94
95
buf_pos = 2;
96
97
pc->
in_packet
= 1;
98
}
else
{
99
if
(pc->
packet_start
!= 0)
100
{
101
if
(pc->
packet_index
!= pc->
packet_start
)
102
{
103
memmove(pc->
packet_buf
, pc->
packet_buf
+ pc->
packet_start
,
104
pc->
packet_index
- pc->
packet_start
);
105
106
pc->
packet_index
-= pc->
packet_start
;
107
pc->
packet_start
= 0;
108
}
else
{
109
pc->
packet_start
= 0;
110
pc->
packet_index
= 0;
111
}
112
}
113
}
114
115
if
(buf_size - buf_pos + pc->
packet_index
>
PARSE_BUF_SIZE
)
116
return
-1;
117
118
/* if not currently in a packet, discard data */
119
if
(pc->
in_packet
== 0)
120
return
buf_size;
121
122
memcpy(pc->
packet_buf
+ pc->
packet_index
, buf + buf_pos, buf_size - buf_pos);
123
pc->
packet_index
+= buf_size - buf_pos;
124
125
p = pc->
packet_buf
;
126
p_end = pc->
packet_buf
+ pc->
packet_index
;
127
128
while
(p < p_end)
129
{
130
if
(*p == 0x0f)
131
{
132
if
(6 <= p_end - p)
133
{
134
len =
AV_RB16
(p + 4);
135
136
if
(len + 6 <= p_end - p)
137
{
138
*poutbuf_size += len + 6;
139
140
p += len + 6;
141
}
else
142
break
;
143
}
else
144
break
;
145
}
else
if
(*p == 0xff) {
146
if
(1 < p_end - p)
147
{
148
ff_dlog
(avctx,
"Junk at end of packet\n"
);
149
}
150
pc->
packet_index
= p - pc->
packet_buf
;
151
pc->
in_packet
= 0;
152
break
;
153
}
else
{
154
av_log
(avctx,
AV_LOG_ERROR
,
"Junk in packet\n"
);
155
156
pc->
packet_index
= p - pc->
packet_buf
;
157
pc->
in_packet
= 0;
158
break
;
159
}
160
}
161
162
if
(*poutbuf_size > 0)
163
{
164
*poutbuf = pc->
packet_buf
;
165
pc->
packet_start
= *poutbuf_size;
166
}
167
168
if
(s->
pts
==
AV_NOPTS_VALUE
)
169
s->
pts
= s->
last_pts
;
170
171
return
buf_size;
172
}
173
174
static
av_cold
void
dvbsub_parse_close
(
AVCodecParserContext
*
s
)
175
{
176
DVBSubParseContext
*pc = s->
priv_data
;
177
av_freep
(&pc->
packet_buf
);
178
}
179
180
AVCodecParser
ff_dvbsub_parser
= {
181
.
codec_ids
= {
AV_CODEC_ID_DVB_SUBTITLE
},
182
.priv_data_size =
sizeof
(
DVBSubParseContext
),
183
.parser_init =
dvbsub_parse_init
,
184
.parser_parse =
dvbsub_parse
,
185
.parser_close =
dvbsub_parse_close
,
186
};
ff_dvbsub_parser
AVCodecParser ff_dvbsub_parser
Definition:
dvbsub_parser.c:180
NULL
#define NULL
Definition:
coverity.c:32
s
const char * s
Definition:
avisynth_c.h:768
dvbsub_parse_close
static av_cold void dvbsub_parse_close(AVCodecParserContext *s)
Definition:
dvbsub_parser.c:174
AVCodecParserContext::fetch_timestamp
int fetch_timestamp
Definition:
avcodec.h:5100
mem.h
Memory handling functions.
AVCodecParser::codec_ids
int codec_ids[5]
Definition:
avcodec.h:5243
DVBSubParseContext::in_packet
int in_packet
Definition:
dvbsub_parser.c:41
AV_RB16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition:
bytestream.h:87
dvbsub_parse_init
static av_cold int dvbsub_parse_init(AVCodecParserContext *s)
Definition:
dvbsub_parser.c:44
dvbsub_parse
static int dvbsub_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition:
dvbsub_parser.c:52
uint8_t
uint8_t
Definition:
audio_convert.c:194
av_cold
#define av_cold
Definition:
attributes.h:82
av_malloc
#define av_malloc(s)
Definition:
tableprint_vlc.h:31
ff_dlog
#define ff_dlog(a,...)
Definition:
tableprint_vlc.h:29
av_log
#define av_log(a,...)
Definition:
tableprint_vlc.h:28
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition:
log.h:176
PARSE_BUF_SIZE
#define PARSE_BUF_SIZE
Definition:
dvbsub_parser.c:33
AVCodecParserContext::priv_data
void * priv_data
Definition:
avcodec.h:5076
AVCodecParser
Definition:
avcodec.h:5242
DVBSubParseContext::packet_buf
uint8_t * packet_buf
Definition:
dvbsub_parser.c:38
intreadwrite.h
AVCodecParserContext::cur_frame_pts
int64_t cur_frame_pts[AV_PARSER_PTS_NB]
Definition:
avcodec.h:5105
AVCodecParserContext
Definition:
avcodec.h:5075
avcodec.h
Libavcodec external API header.
AVCodecContext
main external API structure.
Definition:
avcodec.h:1732
AVCodecParserContext::cur_frame_start_index
int cur_frame_start_index
Definition:
avcodec.h:5103
AV_CODEC_ID_DVB_SUBTITLE
Definition:
avcodec.h:640
buf
void * buf
Definition:
avisynth_c.h:690
DVBSubParseContext::packet_index
int packet_index
Definition:
dvbsub_parser.c:40
internal.h
common internal api header.
DVBSubParseContext::packet_start
int packet_start
Definition:
dvbsub_parser.c:39
AVCodecParserContext::last_pts
int64_t last_pts
Definition:
avcodec.h:5098
len
int len
Definition:
vorbis_enc_data.h:452
DVBSubParseContext
Definition:
dvbsub_parser.c:37
av_freep
#define av_freep(p)
Definition:
tableprint_vlc.h:35
AVCodecParserContext::pts
int64_t pts
Definition:
avcodec.h:5094
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition:
avutil.h:248
Generated on Fri Jan 12 2018 01:45:37 for FFmpeg by
1.8.6