FFmpeg: libavformat/webvttdec.c Source File
Go to the documentation of this file. 1 /*
2 * Copyright (c) 2012 Clément Bœsch
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /**
22 * @file
23 * WebVTT subtitle demuxer
24 * @see https://www.w3.org/TR/webvtt1/
25 */
26
34
35 typedef struct {
40
42 {
43 const uint8_t *ptr =
p->buf;
44
46 ptr += 3; /* skip UTF-8 BOM */
47 if (!strncmp(ptr, "WEBVTT", 6) &&
48 (!ptr[6] || strchr("\n\r\t ", ptr[6])))
50 return 0;
51 }
52
54 {
56 if (sscanf(
s,
"%u:%u:%u.%u", &hh, &mm, &
ss, &ms) == 4)
return (hh*3600LL + mm*60LL +
ss) * 1000LL + ms;
57 if (sscanf(
s,
"%u:%u.%u", &mm, &
ss, &ms) == 3)
return ( mm*60LL +
ss) * 1000LL + ms;
59 }
60
62 {
64 AVBPrint cue;
65 int res = 0;
67
68 if (!st)
74
76
77 for (;;) {
81 const char *
p, *identifier, *settings;
82 size_t identifier_len, settings_len;
84
86 if (res < 0)
87 goto end;
88
89 if (!cue.len)
90 break;
91
92 p = identifier = cue.str;
94
95 /* ignore header chunk */
96 if (!strncmp(
p,
"\xEF\xBB\xBFWEBVTT", 9) ||
97 !strncmp(
p,
"WEBVTT", 6) ||
98 !strncmp(
p,
"STYLE", 5) ||
99 !strncmp(
p,
"REGION", 6) ||
100 !strncmp(
p,
"NOTE", 4))
101 continue;
102
103 /* optional cue identifier (can be a number like in SRT or some kind of
104 * chaptering id) */
105 for (
i = 0;
p[
i] &&
p[
i] !=
'\n' &&
p[
i] !=
'\r';
i++) {
106 if (!strncmp(
p +
i,
"-->", 3)) {
108 break;
109 }
110 }
111 if (!identifier)
112 identifier_len = 0;
113 else {
114 identifier_len = strcspn(
p,
"\r\n");
120 }
121
122 /* cue timestamps */
124 break;
125 if (!(
p = strstr(
p,
"-->")))
126 break;
128 do p++;
while (*
p ==
' ' || *
p ==
'\t');
130 break;
131
132 /* optional cue settings */
133 p += strcspn(
p,
"\n\r\t ");
134 while (*
p ==
'\t' || *
p ==
' ')
137 settings_len = strcspn(
p,
"\r\n");
143
144 /* create packet */
146 if (!sub) {
148 goto end;
149 }
153
154 #define SET_SIDE_DATA(name, type) do { \
155 if (name##_len) { \
156 uint8_t *buf = av_packet_new_side_data(sub, type, name##_len); \
157 if (!buf) { \
158 res = AVERROR(ENOMEM); \
159 goto end; \
160 } \
161 memcpy(buf, name, name##_len); \
162 } \
163 } while (0)
164
167 }
168
170
171 end:
173 return res;
174 }
175
177 {
180 }
181
184 {
187 min_ts, ts, max_ts,
flags);
188 }
189
191 {
194 return 0;
195 }
196
197 #define OFFSET(x) offsetof(WebVTTContext, x)
198 #define KIND_FLAGS AV_OPT_FLAG_SUBTITLE_PARAM|AV_OPT_FLAG_DECODING_PARAM
199
207 };
208
214 };
215
219 .p.mime_type = "text/vtt",
220 .p.extensions = "vtt,webvtt",
229 };
#define AV_BPRINT_SIZE_UNLIMITED
Filter the word "frame" indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
enum AVMediaType codec_type
General type of the encoded data.
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
int ff_subtitles_read_chunk(AVIOContext *pb, AVBPrint *buf)
Same as ff_subtitles_read_text_chunk(), but read from an AVIOContext.
static av_cold int read_close(AVFormatContext *ctx)
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
#define ss(width, name, subs,...)
@ AV_PKT_DATA_WEBVTT_SETTINGS
The optional settings (rendering instructions) that immediately follow the timestamp specifier of a W...
int ff_subtitles_queue_seek(FFDemuxSubtitlesQueue *q, AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Update current_sub_idx to emulate a seek.
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
int ff_subtitles_queue_read_packet(FFDemuxSubtitlesQueue *q, AVPacket *pkt)
Generic read_packet() callback for subtitles demuxers using this queue system.
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
const char * av_default_item_name(void *ptr)
Return the context name.
This structure contains the data a format has to probe a file.
AVPacket * ff_subtitles_queue_insert(FFDemuxSubtitlesQueue *q, const uint8_t *event, size_t len, int merge)
Insert a new subtitle event.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
#define AV_NOPTS_VALUE
Undefined timestamp value.
void ff_subtitles_queue_finalize(void *log_ctx, FFDemuxSubtitlesQueue *q)
Set missing durations, sort subtitles by PTS (and then byte position), and drop duplicated events.
void ff_subtitles_queue_clean(FFDemuxSubtitlesQueue *q)
Remove and destroy all the subtitles packets.
static int read_header(FFV1Context *f, RangeCoder *c)
#define i(width, name, range_min, range_max)
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
int disposition
Stream disposition - a combination of AV_DISPOSITION_* flags.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
@ AV_PKT_DATA_WEBVTT_IDENTIFIER
The optional first identifier line of a WebVTT cue.
@ AV_OPT_TYPE_INT
Underlying C type is int.
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
static int read_probe(const AVProbeData *p)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
int64_t pos
byte position in stream, -1 if unknown
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_RB24
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Generated on Wed Nov 19 2025 19:22:39 for FFmpeg by
doxygen
1.8.17