diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-02-12 18:18:51 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-02-12 18:18:51 +0000 |
commit | 6484fedb8d906a9eafc412c38323f3cf4f1ca0da (patch) | |
tree | cf8335f44cf536b8e59d832da519563d0ba16676 /gst | |
parent | 2a84336a8e5ab47c6eca4eb8fc97d44794443d8a (diff) | |
download | gst-plugins-bad-6484fedb8d906a9eafc412c38323f3cf4f1ca0da.tar.gz gst-plugins-bad-6484fedb8d906a9eafc412c38323f3cf4f1ca0da.tar.bz2 gst-plugins-bad-6484fedb8d906a9eafc412c38323f3cf4f1ca0da.zip |
fixes for #133316, #133663 and #133528 (Stefan Kost)
Original commit message from CVS:
fixes for #133316, #133663 and #133528 (Stefan Kost)
Diffstat (limited to 'gst')
-rw-r--r-- | gst/vbidec/vbiscreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/vbidec/vbiscreen.c b/gst/vbidec/vbiscreen.c index 189591f1..bc315587 100644 --- a/gst/vbidec/vbiscreen.c +++ b/gst/vbidec/vbiscreen.c @@ -506,7 +506,7 @@ void vbiscreen_set_current_cell( vbiscreen_t *vs, char text ) int base; if( !vs ) return; base = ( ( vs->top_of_screen + vs->cury ) % ( 2 * ROWS ) ) * COLS; - if( isprint( text ) ) + if( g_ascii_isprint( text ) ) vs->text[ base + vs->curx + vs->indent ] = text; else vs->text[ base + vs->curx + vs->indent ] = ' '; |