FFmpeg
Loading...
Searching...
No Matches
aqtitledec.c
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 * AQTitle subtitles format demuxer
24 *
25 * @see http://web.archive.org/web/20070210095721/http://www.volny.cz/aberka/czech/aqt.html
26 * @see https://trac.annodex.net/wiki/AQTitle
27 */
28
29#include "avformat.h"
30#include "demux.h"
31#include "internal.h"
32#include "subtitles.h"
33#include "libavutil/opt.h"
34
40
41static int aqt_probe(const AVProbeData *p)
42{
43 int frame;
44 const char *ptr = p->buf;
45
46 if (sscanf(ptr, "-->> %d", &frame) == 1)
48 return 0;
49}
50
52{
53 AQTitleContext *aqt = s->priv_data;
55 int new_event = 1;
57 AVPacket *sub = NULL;
58
59 if (!st)
60 return AVERROR(ENOMEM);
64
65 while (!avio_feof(s->pb)) {
66 char line[4096];
67 int len = ff_get_line(s->pb, line, sizeof(line));
68
69 if (!len)
70 break;
71
72 line[strcspn(line, "\r\n")] = 0;
73
74 if (sscanf(line, "-->> %"SCNd64, &frame) == 1) {
75 new_event = 1;
76 pos = avio_tell(s->pb);
77 if (sub) {
78 if (frame >= sub->pts && (uint64_t)frame - sub->pts < INT64_MAX)
79 sub->duration = frame - sub->pts;
80 sub = NULL;
81 }
82 } else if (*line) {
83 if (!new_event) {
84 sub = ff_subtitles_queue_insert(&aqt->q, "\n", 1, 1);
85 if (!sub)
86 return AVERROR(ENOMEM);
87 }
88 sub = ff_subtitles_queue_insert(&aqt->q, line, strlen(line), !new_event);
89 if (!sub)
90 return AVERROR(ENOMEM);
91 if (new_event) {
92 sub->pts = frame;
93 sub->duration = -1;
94 sub->pos = pos;
95 }
96 new_event = 0;
97 }
98 }
99
101 return 0;
102}
103
105{
106 AQTitleContext *aqt = s->priv_data;
107 return ff_subtitles_queue_read_packet(&aqt->q, pkt);
108}
109
110static int aqt_read_seek(AVFormatContext *s, int stream_index,
111 int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
112{
113 AQTitleContext *aqt = s->priv_data;
114 return ff_subtitles_queue_seek(&aqt->q, s, stream_index,
115 min_ts, ts, max_ts, flags);
116}
117
119{
120 AQTitleContext *aqt = s->priv_data;
122 return 0;
123}
124
125#define OFFSET(x) offsetof(AQTitleContext, x)
126#define SD AV_OPT_FLAG_SUBTITLE_PARAM|AV_OPT_FLAG_DECODING_PARAM
127static const AVOption aqt_options[] = {
128 { "subfps", "set the movie frame rate", OFFSET(frame_rate), AV_OPT_TYPE_RATIONAL, {.dbl=25}, 0, INT_MAX, SD },
129 { NULL }
130};
131
132static const AVClass aqt_class = {
133 .class_name = "aqtdec",
134 .item_name = av_default_item_name,
135 .option = aqt_options,
136 .version = LIBAVUTIL_VERSION_INT,
137};
138
140 .p.name = "aqtitle",
141 .p.long_name = NULL_IF_CONFIG_SMALL("AQTitle subtitles"),
142 .p.extensions = "aqt",
143 .p.priv_class = &aqt_class,
144 .priv_data_size = sizeof(AQTitleContext),
145 .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
149 .read_seek2 = aqt_read_seek,
151};
const FFInputFormat ff_aqtitle_demuxer
Definition aqtitledec.c:139
static const AVOption aqt_options[]
Definition aqtitledec.c:127
static int aqt_read_close(AVFormatContext *s)
Definition aqtitledec.c:118
static int aqt_probe(const AVProbeData *p)
Definition aqtitledec.c:41
static int aqt_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition aqtitledec.c:104
#define OFFSET(x)
Definition aqtitledec.c:125
static int aqt_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition aqtitledec.c:110
static int aqt_read_header(AVFormatContext *s)
Definition aqtitledec.c:51
static const AVClass aqt_class
Definition aqtitledec.c:132
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition avformat.h:481
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
int ff_get_line(AVIOContext *s, char *buf, int maxlen)
Read a whole line of text from AVIOContext.
Definition aviobuf.c:772
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define SD
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
#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...
Definition demux.h:35
static AVPacket * pkt
static AVFrame * frame
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_OPT_TYPE_RATIONAL
Underlying C type is AVRational.
Definition opt.h:279
@ AV_CODEC_ID_TEXT
raw UTF-8 text
Definition codec_id.h:568
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR(e)
Definition error.h:45
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
@ AVMEDIA_TYPE_SUBTITLE
Definition avutil.h:203
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static av_cold int read_close(AVFormatContext *ctx)
Definition libcdio.c:143
AVOptions.
unsigned int pos
Definition spdifenc.c:431
AVRational frame_rate
Definition aqtitledec.c:38
FFDemuxSubtitlesQueue q
Definition aqtitledec.c:37
Describe the class of an AVClass context structure.
Definition log.h:76
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
Format I/O context.
Definition avformat.h:1333
AVOption.
Definition opt.h:428
This structure stores compressed data.
Definition packet.h:580
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition packet.h:621
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition packet.h:596
int64_t pos
byte position in stream, -1 if unknown
Definition packet.h:623
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Rational number (pair of numerator and denominator).
Definition rational.h:58
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
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.
Definition subtitles.c:269
AVPacket * ff_subtitles_queue_insert(FFDemuxSubtitlesQueue *q, const uint8_t *event, size_t len, int merge)
Insert a new subtitle event.
Definition subtitles.c:111
int ff_subtitles_queue_read_packet(FFDemuxSubtitlesQueue *q, AVPacket *pkt)
Generic read_packet() callback for subtitles demuxers using this queue system.
Definition subtitles.c:230
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.
Definition subtitles.c:212
void ff_subtitles_queue_clean(FFDemuxSubtitlesQueue *q)
Remove and destroy all the subtitles packets.
Definition subtitles.c:321
int len