summaryrefslogtreecommitdiffstats
path: root/libavcodec/ass.h
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2010-11-13 14:18:59 +0000
committerAurelien Jacobs <aurel@gnuage.org>2010-11-13 14:18:59 +0000
commit5952be07dc3fdd7bb9fa497b2a3fd12fc7287b41 (patch)
tree1597c4f5c947c988f1408da480380253f9f079f6 /libavcodec/ass.h
parente9c098dbaa07686210c75fe2486b7fb8fea14c97 (diff)
downloadffmpeg-streaming-5952be07dc3fdd7bb9fa497b2a3fd12fc7287b41.zip
ffmpeg-streaming-5952be07dc3fdd7bb9fa497b2a3fd12fc7287b41.tar.gz
add missing files in previous commit (ASS encoder and decoder)
Originally committed as revision 25747 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ass.h')
-rw-r--r--libavcodec/ass.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/libavcodec/ass.h b/libavcodec/ass.h
new file mode 100644
index 0000000..1c847f1
--- /dev/null
+++ b/libavcodec/ass.h
@@ -0,0 +1,53 @@
+/*
+ * SSA/ASS common funtions
+ * Copyright (c) 2010 Aurelien Jacobs <aurel@gnuage.org>
+ *
+ * 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
+ */
+
+#ifndef AVCODEC_ASS_H
+#define AVCODEC_ASS_H
+
+#include "avcodec.h"
+
+/**
+ * Initialize an AVSubtitle structure for use with ff_ass_add_rect().
+ *
+ * @param sub pointer to the AVSubtitle
+ */
+void ff_ass_init(AVSubtitle *sub);
+
+/**
+ * Add an ASS dialog line to an AVSubtitle as a new AVSubtitleRect.
+ *
+ * @param sub pointer to the AVSubtitle
+ * @param dialog ASS dialog to add to sub
+ * @param ts_start start timestamp for this dialog (in 1/100 second unit)
+ * @param ts_end end timestamp for this dialog (in 1/100 second unit)
+ * @param raw when set to 1, it indicates that dialog contains a whole ASS
+ * dialog line which should be copied as is.
+ * when set to 0, it indicates that dialog contains only the Text
+ * part of the ASS dialog line, the rest of the line
+ * will be generated.
+ * @return number of characters read from dialog. It can be less than the whole
+ * length of dialog, if dialog contains several lines of text.
+ * A negative value indicates an error.
+ */
+int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
+ int ts_start, int ts_end, int raw);
+
+#endif /* AVCODEC_ASS_H */
OpenPOWER on IntegriCloud