mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
gst/subparse/: Add support for MPL2 subtitle format (#413799).
Original commit message from CVS: Patch by: Kamil Pawlowski <kamilpe gmail com> * gst/subparse/Makefile.am: * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect), (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event), (gst_subparse_type_find): * gst/subparse/gstsubparse.h: * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2): * gst/subparse/mpl2parse.h: Add support for MPL2 subtitle format (#413799).
This commit is contained in:
parent
135568e80b
commit
389eb6f2f8
7 changed files with 179 additions and 7 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
||||||
|
2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
Patch by: Kamil Pawlowski <kamilpe gmail com>
|
||||||
|
|
||||||
|
* gst/subparse/Makefile.am:
|
||||||
|
* gst/subparse/gstsubparse.c:
|
||||||
|
(gst_sub_parse_data_format_autodetect),
|
||||||
|
(gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
|
||||||
|
(gst_subparse_type_find):
|
||||||
|
* gst/subparse/gstsubparse.h:
|
||||||
|
* gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
|
||||||
|
* gst/subparse/mpl2parse.h:
|
||||||
|
Add support for MPL2 subtitle format (#413799).
|
||||||
|
|
||||||
2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
|
2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit ea828a478fe11561881a6eaf1f7bf2b0b77c8c85
|
Subproject commit dec151d15512e4cca2dcdd36d9c6c4a2185760ec
|
|
@ -8,7 +8,9 @@ libgstsubparse_la_SOURCES = \
|
||||||
samiparse.c \
|
samiparse.c \
|
||||||
samiparse.h \
|
samiparse.h \
|
||||||
tmplayerparse.c \
|
tmplayerparse.c \
|
||||||
tmplayerparse.h
|
tmplayerparse.h \
|
||||||
|
mpl2parse.c \
|
||||||
|
mpl2parse.h
|
||||||
|
|
||||||
libgstsubparse_la_CFLAGS = $(GST_CFLAGS)
|
libgstsubparse_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstsubparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsubparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
@ -18,4 +20,5 @@ noinst_HEADERS = \
|
||||||
gstssaparse.h \
|
gstssaparse.h \
|
||||||
gstsubparse.h \
|
gstsubparse.h \
|
||||||
samiparse.h \
|
samiparse.h \
|
||||||
tmplayerparse.h
|
tmplayerparse.h \
|
||||||
|
mpl2parse.h
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
#include "gstssaparse.h"
|
#include "gstssaparse.h"
|
||||||
#include "samiparse.h"
|
#include "samiparse.h"
|
||||||
#include "tmplayerparse.h"
|
#include "tmplayerparse.h"
|
||||||
|
#include "mpl2parse.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY (sub_parse_debug);
|
GST_DEBUG_CATEGORY (sub_parse_debug);
|
||||||
|
|
||||||
|
@ -63,7 +64,7 @@ static GstStaticPadTemplate sink_templ = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("application/x-subtitle; application/x-subtitle-sami; "
|
GST_STATIC_CAPS ("application/x-subtitle; application/x-subtitle-sami; "
|
||||||
"application/x-subtitle-tmplayer")
|
"application/x-subtitle-tmplayer; application/x-subtitle-mpl2")
|
||||||
);
|
);
|
||||||
#else
|
#else
|
||||||
static GstStaticPadTemplate sink_templ = GST_STATIC_PAD_TEMPLATE ("sink",
|
static GstStaticPadTemplate sink_templ = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
|
@ -841,7 +842,10 @@ gst_sub_parse_data_format_autodetect (gchar * match_str)
|
||||||
GST_LOG ("TMPlayer (time based) format detected");
|
GST_LOG ("TMPlayer (time based) format detected");
|
||||||
return GST_SUB_PARSE_FORMAT_TMPLAYER;
|
return GST_SUB_PARSE_FORMAT_TMPLAYER;
|
||||||
}
|
}
|
||||||
|
if (sscanf (match_str, "[%u][%u]", &n1, &n2) == 2) {
|
||||||
|
GST_LOG ("MPL2 (time based) format detected");
|
||||||
|
return GST_SUB_PARSE_FORMAT_MPL2;
|
||||||
|
}
|
||||||
GST_DEBUG ("no subtitle format detected");
|
GST_DEBUG ("no subtitle format detected");
|
||||||
return GST_SUB_PARSE_FORMAT_UNKNOWN;
|
return GST_SUB_PARSE_FORMAT_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
@ -881,6 +885,9 @@ gst_sub_parse_format_autodetect (GstSubParse * self)
|
||||||
case GST_SUB_PARSE_FORMAT_TMPLAYER:
|
case GST_SUB_PARSE_FORMAT_TMPLAYER:
|
||||||
self->parse_line = parse_tmplayer;
|
self->parse_line = parse_tmplayer;
|
||||||
return gst_caps_new_simple ("text/plain", NULL);
|
return gst_caps_new_simple ("text/plain", NULL);
|
||||||
|
case GST_SUB_PARSE_FORMAT_MPL2:
|
||||||
|
self->parse_line = parse_mpl2;
|
||||||
|
return gst_caps_new_simple ("text/x-pango-markup", NULL);
|
||||||
case GST_SUB_PARSE_FORMAT_UNKNOWN:
|
case GST_SUB_PARSE_FORMAT_UNKNOWN:
|
||||||
default:
|
default:
|
||||||
GST_DEBUG ("no subtitle format detected");
|
GST_DEBUG ("no subtitle format detected");
|
||||||
|
@ -1011,7 +1018,8 @@ gst_sub_parse_sink_event (GstPad * pad, GstEvent * event)
|
||||||
case GST_EVENT_EOS:{
|
case GST_EVENT_EOS:{
|
||||||
/* Make sure the last subrip chunk is pushed out even
|
/* Make sure the last subrip chunk is pushed out even
|
||||||
* if the file does not have an empty line at the end */
|
* if the file does not have an empty line at the end */
|
||||||
if (self->parser_type == GST_SUB_PARSE_FORMAT_SUBRIP) {
|
if (self->parser_type == GST_SUB_PARSE_FORMAT_SUBRIP ||
|
||||||
|
self->parser_type == GST_SUB_PARSE_FORMAT_MPL2) {
|
||||||
GstBuffer *buf = gst_buffer_new_and_alloc (1 + 1);
|
GstBuffer *buf = gst_buffer_new_and_alloc (1 + 1);
|
||||||
|
|
||||||
GST_DEBUG ("EOS. Pushing remaining text (if any)");
|
GST_DEBUG ("EOS. Pushing remaining text (if any)");
|
||||||
|
@ -1120,6 +1128,8 @@ gst_sub_parse_change_state (GstElement * element, GstStateChange transition)
|
||||||
|
|
||||||
/* FIXME 0.11: these caps are ugly, use app/x-subtitle + type field or so;
|
/* FIXME 0.11: these caps are ugly, use app/x-subtitle + type field or so;
|
||||||
* also, give different subtitle formats really different types */
|
* also, give different subtitle formats really different types */
|
||||||
|
static GstStaticCaps mpl2_caps =
|
||||||
|
GST_STATIC_CAPS ("application/x-subtitle-mpl2");
|
||||||
static GstStaticCaps tmp_caps =
|
static GstStaticCaps tmp_caps =
|
||||||
GST_STATIC_CAPS ("application/x-subtitle-tmplayer");
|
GST_STATIC_CAPS ("application/x-subtitle-tmplayer");
|
||||||
static GstStaticCaps smi_caps = GST_STATIC_CAPS ("application/x-subtitle-sami");
|
static GstStaticCaps smi_caps = GST_STATIC_CAPS ("application/x-subtitle-sami");
|
||||||
|
@ -1128,6 +1138,7 @@ static GstStaticCaps sub_caps = GST_STATIC_CAPS ("application/x-subtitle");
|
||||||
#define SUB_CAPS (gst_static_caps_get (&sub_caps))
|
#define SUB_CAPS (gst_static_caps_get (&sub_caps))
|
||||||
#define SAMI_CAPS (gst_static_caps_get (&smi_caps))
|
#define SAMI_CAPS (gst_static_caps_get (&smi_caps))
|
||||||
#define TMP_CAPS (gst_static_caps_get (&tmp_caps))
|
#define TMP_CAPS (gst_static_caps_get (&tmp_caps))
|
||||||
|
#define MPL2_CAPS (gst_static_caps_get (&mpl2_caps))
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_subparse_type_find (GstTypeFind * tf, gpointer private)
|
gst_subparse_type_find (GstTypeFind * tf, gpointer private)
|
||||||
|
@ -1166,6 +1177,14 @@ gst_subparse_type_find (GstTypeFind * tf, gpointer private)
|
||||||
GST_DEBUG ("TMPlayer (time based) format detected");
|
GST_DEBUG ("TMPlayer (time based) format detected");
|
||||||
caps = TMP_CAPS;
|
caps = TMP_CAPS;
|
||||||
break;
|
break;
|
||||||
|
/* FIXME: our MPL2 typefinding is not really good enough to warrant
|
||||||
|
* returning a high probability (however, since we registered our
|
||||||
|
* typefinder here with a rank of MARGINAL we should pretty much only
|
||||||
|
* be called if most other typefinders have already run */
|
||||||
|
case GST_SUB_PARSE_FORMAT_MPL2:
|
||||||
|
GST_DEBUG ("MPL2 (time based) format detected");
|
||||||
|
caps = MPL2_CAPS;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
case GST_SUB_PARSE_FORMAT_UNKNOWN:
|
case GST_SUB_PARSE_FORMAT_UNKNOWN:
|
||||||
GST_DEBUG ("no subtitle format detected");
|
GST_DEBUG ("no subtitle format detected");
|
||||||
|
|
|
@ -50,7 +50,8 @@ typedef enum
|
||||||
GST_SUB_PARSE_FORMAT_SUBRIP = 2,
|
GST_SUB_PARSE_FORMAT_SUBRIP = 2,
|
||||||
GST_SUB_PARSE_FORMAT_MPSUB = 3,
|
GST_SUB_PARSE_FORMAT_MPSUB = 3,
|
||||||
GST_SUB_PARSE_FORMAT_SAMI = 4,
|
GST_SUB_PARSE_FORMAT_SAMI = 4,
|
||||||
GST_SUB_PARSE_FORMAT_TMPLAYER = 5
|
GST_SUB_PARSE_FORMAT_TMPLAYER = 5,
|
||||||
|
GST_SUB_PARSE_FORMAT_MPL2 = 6
|
||||||
} GstSubParseFormat;
|
} GstSubParseFormat;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
103
gst/subparse/mpl2parse.c
Normal file
103
gst/subparse/mpl2parse.c
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
/* GStreamer mpl2 format subtitle parser
|
||||||
|
* Copyright (C) 2006 Kamil Pawlowski <kamilpe gmail com>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "mpl2parse.h"
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
/* From http://lists.mplayerhq.hu/pipermail/mplayer-users/2003-February/030222.html
|
||||||
|
*
|
||||||
|
* [123][456] Sample subtitle
|
||||||
|
* [1234][5678] Line 1|Line 2
|
||||||
|
* [12345][67890] /Italic|Normal
|
||||||
|
* [12345][67890] /Italic|/Italic
|
||||||
|
* [12345][67890] Normal|/Italic
|
||||||
|
*
|
||||||
|
* (The space between the last ']' bracket and the text appears to be optional)
|
||||||
|
*/
|
||||||
|
|
||||||
|
static gchar *
|
||||||
|
mpl2_parse_line (ParserState * state, const gchar * line, guint line_num)
|
||||||
|
{
|
||||||
|
GString *markup;
|
||||||
|
gint dc_start, dc_stop;
|
||||||
|
|
||||||
|
/* parse subtitle file line */
|
||||||
|
if (sscanf (line, "[%u][%u]", &dc_start, &dc_stop) != 2) {
|
||||||
|
GST_WARNING ("failed to extract timestamps for line '%s'", line);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_LOG ("line format %u %u", dc_start, dc_stop);
|
||||||
|
state->start_time = GST_SECOND / 10 * dc_start;
|
||||||
|
state->duration = (GST_SECOND / 10 * dc_stop) - state->start_time;
|
||||||
|
|
||||||
|
/* skip brackets with timestamps */
|
||||||
|
line = strchr (line, ']') + 1;
|
||||||
|
line = strchr (line, ']') + 1;
|
||||||
|
|
||||||
|
markup = g_string_new (NULL);
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
const gchar *format_string;
|
||||||
|
const gchar *sep;
|
||||||
|
gchar *line_chunk_escaped;
|
||||||
|
|
||||||
|
/* skip leading white spaces */
|
||||||
|
while (*line == ' ' || *line == '\t')
|
||||||
|
++line;
|
||||||
|
|
||||||
|
/* a '/' at the beginning indicates italics */
|
||||||
|
if (*line == '/') {
|
||||||
|
format_string = "<i>%s</i>";
|
||||||
|
++line;
|
||||||
|
} else {
|
||||||
|
format_string = "%s";
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((sep = strchr (line, '|')))
|
||||||
|
line_chunk_escaped = g_markup_escape_text (line, sep - line);
|
||||||
|
else
|
||||||
|
line_chunk_escaped = g_markup_escape_text (line, -1);
|
||||||
|
|
||||||
|
GST_LOG ("escaped line: %s", line_chunk_escaped);
|
||||||
|
g_string_append_printf (markup, format_string, line_chunk_escaped);
|
||||||
|
|
||||||
|
g_free (line_chunk_escaped);
|
||||||
|
|
||||||
|
if (sep == NULL)
|
||||||
|
break;
|
||||||
|
|
||||||
|
/* move after the '|' and append another line */
|
||||||
|
g_string_append (markup, "\n");
|
||||||
|
line = sep + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return g_strstrip (g_string_free (markup, FALSE));
|
||||||
|
}
|
||||||
|
|
||||||
|
gchar *
|
||||||
|
parse_mpl2 (ParserState * state, const gchar * line)
|
||||||
|
{
|
||||||
|
gchar *ret;
|
||||||
|
|
||||||
|
ret = mpl2_parse_line (state, line, state->state);
|
||||||
|
++state->state;
|
||||||
|
return ret;
|
||||||
|
}
|
32
gst/subparse/mpl2parse.h
Normal file
32
gst/subparse/mpl2parse.h
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
/* GStreamer mpl2 format subtitle parser
|
||||||
|
* Copyright (C) 2006 Kamil Pawlowski <kamilpe gmail com>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _MPL2_PARSE_H_
|
||||||
|
#define _MPL2_PARSE_H_
|
||||||
|
|
||||||
|
#include "gstsubparse.h"
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
gchar * parse_mpl2 (ParserState * state, const gchar * line);
|
||||||
|
|
||||||
|
G_END_DECLS
|
||||||
|
|
||||||
|
#endif /* _MPL2_PARSE_H_ */
|
||||||
|
|
Loading…
Reference in a new issue