[gstreamer-bugs] [Bug 339405] New: pango text overlay plugin can't display '\n' character

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Sat Apr 22 07:46:57 PDT 2006


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=339405
 GStreamer | gst-plugins-base | Ver: 0.10.5

           Summary: pango text overlay plugin can't display '\n' character
           Product: GStreamer
           Version: 0.10.5
          Platform: Other
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gst-plugins-base
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: ganadist at chollian.net
         QAContact: gstreamer-bugs at lists.sourceforge.net
     GNOME version: 2.13/2.14
   GNOME milestone: Unspecified


Please describe the problem:
pango text overlay plugin can't display '\n' character.

subparse plugin can produce '\n', but pango plugin replace '\n' to space
character. so it can't display.


Steps to reproduce:
1. play a video file with subtitle
2. 
3. 


Actual results:


Expected results:


Does this happen every time?
yes

Other information:
gst_text_overlay_render_text() at ext/pango/gsttextoverlay.c:953 replace '\n',
'\r' and '\t' characters to ' ' character like this.

g_strdelimit (string, "\n\r\t", ' ');

it need to change to 

g_strdelimit (string, "\r\t", ' ');


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.




More information about the Gstreamer-bugs mailing list