libavformat/assdec.c
de3ae185
 /*
  * SSA/ASS demuxer
  * Copyright (c) 2008 Michael Niedermayer
3a6fa38f
  * Copyright (c) 2014 Clément Bœsch
de3ae185
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
8f8bc923
 #include <stdint.h>
 
de3ae185
 #include "avformat.h"
7c892951
 #include "internal.h"
e0260e25
 #include "subtitles.h"
36e61e24
 #include "libavcodec/internal.h"
e0260e25
 #include "libavutil/bprint.h"
de3ae185
 
5c9c305d
 typedef struct ASSContext {
e0260e25
     FFDemuxSubtitlesQueue q;
ff5f5cbb
     unsigned readorder;
5c9c305d
 } ASSContext;
de3ae185
 
069c8975
 static int ass_probe(AVProbeData *p)
de3ae185
 {
3e842617
     char buf[13];
     FFTextReader tr;
     ff_text_init_buf(&tr, p->buf, p->buf_size);
de3ae185
 
6679fcd4
     while (ff_text_peek_r8(&tr) == '\r' || ff_text_peek_r8(&tr) == '\n')
         ff_text_r8(&tr);
 
3e842617
     ff_text_read(&tr, buf, sizeof(buf));
 
     if (!memcmp(buf, "[Script Info]", 13))
de3ae185
         return AVPROBE_SCORE_MAX;
 
     return 0;
 }
 
069c8975
 static int ass_read_close(AVFormatContext *s)
de3ae185
 {
     ASSContext *ass = s->priv_data;
e0260e25
     ff_subtitles_queue_clean(&ass->q);
de3ae185
     return 0;
 }
 
ff5f5cbb
 static int read_dialogue(ASSContext *ass, AVBPrint *dst, const uint8_t *p,
                          int64_t *start, int *duration)
de3ae185
 {
138902df
     int pos = 0;
e0260e25
     int64_t end;
     int hh1, mm1, ss1, ms1;
     int hh2, mm2, ss2, ms2;
 
ff5f5cbb
     if (sscanf(p, "Dialogue: %*[^,],%d:%d:%d%*c%d,%d:%d:%d%*c%d,%n",
e0260e25
                &hh1, &mm1, &ss1, &ms1,
138902df
                &hh2, &mm2, &ss2, &ms2, &pos) >= 8 && pos > 0) {
ff5f5cbb
 
         /* This is not part of the sscanf itself in order to handle an actual
          * number (which would be the Layer) or the form "Marked=N" (which is
d281a87a
          * the old SSA field, now replaced by Layer, and will lead to Layer
ff5f5cbb
          * being 0 here). */
         const int layer = atoi(p + 10);
 
e0260e25
         end    = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
         *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
         *duration = end - *start;
ff5f5cbb
 
         av_bprint_clear(dst);
         av_bprintf(dst, "%u,%d,%s", ass->readorder++, layer, p + pos);
 
         /* right strip the buffer */
         while (dst->len > 0 &&
                dst->str[dst->len - 1] == '\r' ||
                dst->str[dst->len - 1] == '\n')
             dst->str[--dst->len] = 0;
e0260e25
         return 0;
     }
     return -1;
de3ae185
 }
 
3e842617
 static int64_t get_line(AVBPrint *buf, FFTextReader *tr)
de3ae185
 {
3e842617
     int64_t pos = ff_text_pos(tr);
e0260e25
 
     av_bprint_clear(buf);
     for (;;) {
3e842617
         char c = ff_text_r8(tr);
e0260e25
         if (!c)
             break;
         av_bprint_chars(buf, c, 1);
         if (c == '\n')
             break;
     }
     return pos;
de3ae185
 }
 
069c8975
 static int ass_read_header(AVFormatContext *s)
de3ae185
 {
     ASSContext *ass = s->priv_data;
ff5f5cbb
     AVBPrint header, line, rline;
9ec52e55
     int res = 0;
de3ae185
     AVStream *st;
3e842617
     FFTextReader tr;
19a6431e
     ff_text_init_avio(s, &tr, s->pb);
de3ae185
 
3b3bbdd3
     st = avformat_new_stream(s, NULL);
de3ae185
     if (!st)
6d2892c9
         return AVERROR(ENOMEM);
c3f9ebf7
     avpriv_set_pts_info(st, 64, 1, 100);
9200514a
     st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
6f69f7a8
     st->codecpar->codec_id   = AV_CODEC_ID_ASS;
de3ae185
 
e0260e25
     av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
     av_bprint_init(&line,   0, AV_BPRINT_SIZE_UNLIMITED);
ff5f5cbb
     av_bprint_init(&rline,  0, AV_BPRINT_SIZE_UNLIMITED);
de3ae185
 
265d2a73
     ass->q.keep_duplicates = 1;
 
e0260e25
     for (;;) {
3e842617
         int64_t pos = get_line(&line, &tr);
0aa5c5a8
         int64_t ts_start = AV_NOPTS_VALUE;
         int duration = -1;
         AVPacket *sub;
e0260e25
 
9ec52e55
         if (!line.str[0]) // EOF
             break;
 
0aa5c5a8
         if (read_dialogue(ass, &rline, line.str, &ts_start, &duration) < 0) {
             av_bprintf(&header, "%s", line.str);
             continue;
         }
         sub = ff_subtitles_queue_insert(&ass->q, rline.str, rline.len, 0);
         if (!sub) {
             res = AVERROR(ENOMEM);
             goto end;
         }
         sub->pos = pos;
         sub->pts = ts_start;
         sub->duration = duration;
de3ae185
     }
 
6f69f7a8
     res = ff_bprint_to_codecpar_extradata(st->codecpar, &header);
36e61e24
     if (res < 0)
e0260e25
         goto end;
de3ae185
 
af924fd9
     ff_subtitles_queue_finalize(s, &ass->q);
de3ae185
 
e0260e25
 end:
71f62751
     av_bprint_finalize(&header, NULL);
     av_bprint_finalize(&line,   NULL);
     av_bprint_finalize(&rline,  NULL);
e0260e25
     return res;
de3ae185
 }
 
069c8975
 static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
de3ae185
 {
     ASSContext *ass = s->priv_data;
e0260e25
     return ff_subtitles_queue_read_packet(&ass->q, pkt);
de3ae185
 }
 
069c8975
 static int ass_read_seek(AVFormatContext *s, int stream_index,
                          int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
ac066b83
 {
     ASSContext *ass = s->priv_data;
e0260e25
     return ff_subtitles_queue_seek(&ass->q, s, stream_index,
                                    min_ts, ts, max_ts, flags);
ac066b83
 }
 
66355be3
 AVInputFormat ff_ass_demuxer = {
87d69d32
     .name           = "ass",
0177b7d2
     .long_name      = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
87d69d32
     .priv_data_size = sizeof(ASSContext),
069c8975
     .read_probe     = ass_probe,
     .read_header    = ass_read_header,
     .read_packet    = ass_read_packet,
     .read_close     = ass_read_close,
     .read_seek2     = ass_read_seek,
de3ae185
 };