FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
assdec.c
Go to the documentation of this file.
1 /*
2  * SSA/ASS demuxer
3  * Copyright (c) 2008 Michael Niedermayer
4  * Copyright (c) 2014 Clément Bœsch
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include <stdint.h>
24 
25 #include "avformat.h"
26 #include "internal.h"
27 #include "subtitles.h"
28 #include "libavcodec/internal.h"
29 #include "libavutil/bprint.h"
30 
31 typedef struct ASSContext {
33  unsigned readorder;
34 } ASSContext;
35 
36 static int ass_probe(AVProbeData *p)
37 {
38  char buf[13];
39  FFTextReader tr;
40  ff_text_init_buf(&tr, p->buf, p->buf_size);
41 
42  ff_text_read(&tr, buf, sizeof(buf));
43 
44  if (!memcmp(buf, "[Script Info]", 13))
45  return AVPROBE_SCORE_MAX;
46 
47  return 0;
48 }
49 
51 {
52  ASSContext *ass = s->priv_data;
54  return 0;
55 }
56 
57 static int read_dialogue(ASSContext *ass, AVBPrint *dst, const uint8_t *p,
58  int64_t *start, int *duration)
59 {
60  int pos = 0;
61  int64_t end;
62  int hh1, mm1, ss1, ms1;
63  int hh2, mm2, ss2, ms2;
64 
65  if (sscanf(p, "Dialogue: %*[^,],%d:%d:%d%*c%d,%d:%d:%d%*c%d,%n",
66  &hh1, &mm1, &ss1, &ms1,
67  &hh2, &mm2, &ss2, &ms2, &pos) >= 8 && pos > 0) {
68 
69  /* This is not part of the sscanf itself in order to handle an actual
70  * number (which would be the Layer) or the form "Marked=N" (which is
71  * the old SSA field, now replaced by Layer, and will lead to Layer
72  * being 0 here). */
73  const int layer = atoi(p + 10);
74 
75  end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
76  *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
77  *duration = end - *start;
78 
79  av_bprint_clear(dst);
80  av_bprintf(dst, "%u,%d,%s", ass->readorder++, layer, p + pos);
81 
82  /* right strip the buffer */
83  while (dst->len > 0 &&
84  dst->str[dst->len - 1] == '\r' ||
85  dst->str[dst->len - 1] == '\n')
86  dst->str[--dst->len] = 0;
87  return 0;
88  }
89  return -1;
90 }
91 
92 static int64_t get_line(AVBPrint *buf, FFTextReader *tr)
93 {
94  int64_t pos = ff_text_pos(tr);
95 
96  av_bprint_clear(buf);
97  for (;;) {
98  char c = ff_text_r8(tr);
99  if (!c)
100  break;
101  av_bprint_chars(buf, c, 1);
102  if (c == '\n')
103  break;
104  }
105  return pos;
106 }
107 
109 {
110  ASSContext *ass = s->priv_data;
111  AVBPrint header, line, rline;
112  int res = 0;
113  AVStream *st;
114  FFTextReader tr;
115  ff_text_init_avio(s, &tr, s->pb);
116 
117  st = avformat_new_stream(s, NULL);
118  if (!st)
119  return AVERROR(ENOMEM);
120  avpriv_set_pts_info(st, 64, 1, 100);
123 
127 
128  for (;;) {
129  int64_t pos = get_line(&line, &tr);
130  int64_t ts_start = AV_NOPTS_VALUE;
131  int duration = -1;
132  AVPacket *sub;
133 
134  if (!line.str[0]) // EOF
135  break;
136 
137  if (read_dialogue(ass, &rline, line.str, &ts_start, &duration) < 0) {
138  av_bprintf(&header, "%s", line.str);
139  continue;
140  }
141  sub = ff_subtitles_queue_insert(&ass->q, rline.str, rline.len, 0);
142  if (!sub) {
143  res = AVERROR(ENOMEM);
144  goto end;
145  }
146  sub->pos = pos;
147  sub->pts = ts_start;
148  sub->duration = duration;
149  }
150 
151  res = avpriv_bprint_to_extradata(st->codec, &header);
152  if (res < 0)
153  goto end;
154 
156 
157 end:
158  av_bprint_finalize(&header, NULL);
159  av_bprint_finalize(&line, NULL);
160  av_bprint_finalize(&rline, NULL);
161  return res;
162 }
163 
165 {
166  ASSContext *ass = s->priv_data;
167  return ff_subtitles_queue_read_packet(&ass->q, pkt);
168 }
169 
170 static int ass_read_seek(AVFormatContext *s, int stream_index,
171  int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
172 {
173  ASSContext *ass = s->priv_data;
174  return ff_subtitles_queue_seek(&ass->q, s, stream_index,
175  min_ts, ts, max_ts, flags);
176 }
177 
179  .name = "ass",
180  .long_name = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
181  .priv_data_size = sizeof(ASSContext),
186  .read_seek2 = ass_read_seek,
187 };
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1187
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4006
AVInputFormat ff_ass_demuxer
Definition: assdec.c:178
static int ass_read_close(AVFormatContext *s)
Definition: assdec.c:50
void ff_subtitles_queue_clean(FFDemuxSubtitlesQueue *q)
Remove and destroy all the subtitles packets.
Definition: subtitles.c:270
static AVPacket pkt
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
unsigned readorder
Definition: assdec.c:33
Format I/O context.
Definition: avformat.h:1272
static int ass_read_header(AVFormatContext *s)
Definition: assdec.c:108
uint8_t
int ff_subtitles_queue_read_packet(FFDemuxSubtitlesQueue *q, AVPacket *pkt)
Generic read_packet() callback for subtitles demuxers using this queue system.
Definition: subtitles.c:181
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3672
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
static const uint8_t header[24]
Definition: sdr2.c:67
static int64_t duration
Definition: ffplay.c:321
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1180
int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
Finalize buf into extradata and set its size appropriately.
Definition: utils.c:3784
static int ass_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: assdec.c:170
#define AV_BPRINT_SIZE_UNLIMITED
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
FFDemuxSubtitlesQueue q
Definition: assdec.c:32
Definition: graph2dot.c:48
static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: assdec.c:164
void ff_text_init_avio(void *s, FFTextReader *r, AVIOContext *pb)
Initialize the FFTextReader from the given AVIOContext.
Definition: subtitles.c:27
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:451
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:450
int64_t ff_text_pos(FFTextReader *r)
Return the byte position of the next byte returned by ff_text_r8().
Definition: subtitles.c:60
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
void ff_subtitles_queue_finalize(FFDemuxSubtitlesQueue *q)
Set missing durations and sort subtitles by PTS, and then byte position.
Definition: subtitles.c:169
static int64_t get_line(AVBPrint *buf, FFTextReader *tr)
Definition: assdec.c:92
void ff_text_read(FFTextReader *r, char *buf, size_t size)
Read the given number of bytes (in UTF-8).
Definition: subtitles.c:86
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:620
int ff_text_r8(FFTextReader *r)
Return the next byte.
Definition: subtitles.c:65
Stream structure.
Definition: avformat.h:842
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
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:218
enum AVMediaType codec_type
Definition: avcodec.h:1249
enum AVCodecID codec_id
Definition: avcodec.h:1258
AVIOContext * pb
I/O context.
Definition: avformat.h:1314
void * buf
Definition: avisynth_c.h:553
This structure contains the data a format has to probe a file.
Definition: avformat.h:448
static int flags
Definition: cpu.c:47
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
Definition: bprint.c:227
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:460
Main libavformat public API header.
common internal api header.
static double c[64]
void ff_text_init_buf(FFTextReader *r, void *buf, size_t size)
Similar to ff_text_init_avio(), but sets it up to read from a bounded buffer.
Definition: subtitles.c:53
ASS as defined in Matroska.
Definition: avcodec.h:527
void * priv_data
Format private data.
Definition: avformat.h:1300
static int ass_probe(AVProbeData *p)
Definition: assdec.c:36
void INT64 start
Definition: avisynth_c.h:553
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:628
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
static int read_dialogue(ASSContext *ass, AVBPrint *dst, const uint8_t *p, int64_t *start, int *duration)
Definition: assdec.c:57
This structure stores compressed data.
Definition: avcodec.h:1139
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1155
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:241
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
Definition: bprint.c:140