diff options
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch')
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch index e453a500c9..c922aadede 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | From f587861bbe12ad0b10370f835592746aafedbf56 Mon Sep 17 00:00:00 2001 | 1 | From 7bf9525528c8f4a47413d7f82214d76f95f0c5f6 Mon Sep 17 00:00:00 2001 |
| 2 | From: Mingke Wang <mingke.wang@freescale.com> | 2 | From: Mingke Wang <mingke.wang@freescale.com> |
| 3 | Date: Thu, 19 Mar 2015 14:17:10 +0800 | 3 | Date: Thu, 19 Mar 2015 14:17:10 +0800 |
| 4 | Subject: [PATCH 2/4] ssaparse: enhance SSA text lines parsing. | 4 | Subject: [PATCH] ssaparse: enhance SSA text lines parsing. |
| 5 | 5 | ||
| 6 | some parser will pass in the original ssa text line which starts with "Dialog:" | 6 | some parser will pass in the original ssa text line which starts with "Dialog:" |
| 7 | and there's are maybe multiple Dialog lines in one input buffer. | 7 | and there's are maybe multiple Dialog lines in one input buffer. |
| @@ -9,6 +9,7 @@ and there's are maybe multiple Dialog lines in one input buffer. | |||
| 9 | Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=747496] | 9 | Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=747496] |
| 10 | 10 | ||
| 11 | Signed-off-by: Mingke Wang <mingke.wang@freescale.com> | 11 | Signed-off-by: Mingke Wang <mingke.wang@freescale.com> |
| 12 | |||
| 12 | --- | 13 | --- |
| 13 | gst/subparse/gstssaparse.c | 150 +++++++++++++++++++++++++++++++++---- | 14 | gst/subparse/gstssaparse.c | 150 +++++++++++++++++++++++++++++++++---- |
| 14 | 1 file changed, 134 insertions(+), 16 deletions(-) | 15 | 1 file changed, 134 insertions(+), 16 deletions(-) |
| @@ -17,10 +18,10 @@ Signed-off-by: Mingke Wang <mingke.wang@freescale.com> | |||
| 17 | diff --git a/gst/subparse/gstssaparse.c b/gst/subparse/gstssaparse.c | 18 | diff --git a/gst/subparse/gstssaparse.c b/gst/subparse/gstssaparse.c |
| 18 | old mode 100644 | 19 | old mode 100644 |
| 19 | new mode 100755 | 20 | new mode 100755 |
| 20 | index c849c08..4b9636c | 21 | index d6fdb9c..5ebe678 |
| 21 | --- a/gst/subparse/gstssaparse.c | 22 | --- a/gst/subparse/gstssaparse.c |
| 22 | +++ b/gst/subparse/gstssaparse.c | 23 | +++ b/gst/subparse/gstssaparse.c |
| 23 | @@ -262,6 +262,7 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt) | 24 | @@ -270,6 +270,7 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt) |
| 24 | * gst_ssa_parse_push_line: | 25 | * gst_ssa_parse_push_line: |
| 25 | * @parse: caller element | 26 | * @parse: caller element |
| 26 | * @txt: text to push | 27 | * @txt: text to push |
| @@ -28,7 +29,7 @@ index c849c08..4b9636c | |||
| 28 | * @start: timestamp for the buffer | 29 | * @start: timestamp for the buffer |
| 29 | * @duration: duration for the buffer | 30 | * @duration: duration for the buffer |
| 30 | * | 31 | * |
| 31 | @@ -271,27 +272,133 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt) | 32 | @@ -279,27 +280,133 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt) |
| 32 | * Returns: result of the push of the created buffer | 33 | * Returns: result of the push of the created buffer |
| 33 | */ | 34 | */ |
| 34 | static GstFlowReturn | 35 | static GstFlowReturn |
| @@ -173,7 +174,7 @@ index c849c08..4b9636c | |||
| 173 | GST_LOG_OBJECT (parse, "Text : %s", t); | 174 | GST_LOG_OBJECT (parse, "Text : %s", t); |
| 174 | 175 | ||
| 175 | if (gst_ssa_parse_remove_override_codes (parse, t)) { | 176 | if (gst_ssa_parse_remove_override_codes (parse, t)) { |
| 176 | @@ -309,13 +416,22 @@ gst_ssa_parse_push_line (GstSsaParse * parse, gchar * txt, | 177 | @@ -317,13 +424,22 @@ gst_ssa_parse_push_line (GstSsaParse * parse, gchar * txt, |
| 177 | gst_buffer_fill (buf, 0, escaped, len + 1); | 178 | gst_buffer_fill (buf, 0, escaped, len + 1); |
| 178 | gst_buffer_set_size (buf, len); | 179 | gst_buffer_set_size (buf, len); |
| 179 | g_free (escaped); | 180 | g_free (escaped); |
| @@ -200,7 +201,7 @@ index c849c08..4b9636c | |||
| 200 | 201 | ||
| 201 | ret = gst_pad_push (parse->srcpad, buf); | 202 | ret = gst_pad_push (parse->srcpad, buf); |
| 202 | 203 | ||
| 203 | @@ -335,6 +451,7 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf) | 204 | @@ -343,6 +459,7 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf) |
| 204 | GstClockTime ts; | 205 | GstClockTime ts; |
| 205 | gchar *txt; | 206 | gchar *txt; |
| 206 | GstMapInfo map; | 207 | GstMapInfo map; |
| @@ -208,7 +209,7 @@ index c849c08..4b9636c | |||
| 208 | 209 | ||
| 209 | if (G_UNLIKELY (!parse->framed)) | 210 | if (G_UNLIKELY (!parse->framed)) |
| 210 | goto not_framed; | 211 | goto not_framed; |
| 211 | @@ -352,13 +469,14 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf) | 212 | @@ -360,13 +477,14 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf) |
| 212 | /* make double-sure it's 0-terminated and all */ | 213 | /* make double-sure it's 0-terminated and all */ |
| 213 | gst_buffer_map (buf, &map, GST_MAP_READ); | 214 | gst_buffer_map (buf, &map, GST_MAP_READ); |
| 214 | txt = g_strndup ((gchar *) map.data, map.size); | 215 | txt = g_strndup ((gchar *) map.data, map.size); |
| @@ -224,6 +225,3 @@ index c849c08..4b9636c | |||
| 224 | 225 | ||
| 225 | if (ret != GST_FLOW_OK && GST_CLOCK_TIME_IS_VALID (ts)) { | 226 | if (ret != GST_FLOW_OK && GST_CLOCK_TIME_IS_VALID (ts)) { |
| 226 | GstSegment segment; | 227 | GstSegment segment; |
| 227 | -- | ||
| 228 | 2.28.0 | ||
| 229 | |||
