- isprint seems to detect and ascii stream better

Original commit message from CVS:
- isprint seems to detect and ascii stream better
This commit is contained in:
Wim Taymans 2002-09-09 22:55:17 +00:00
parent c05d43dad3
commit e3741783bd

View file

@ -212,7 +212,7 @@ text_type_find (GstBuffer *buf, gpointer private)
gint i;
for (i=0; i<GST_BUFFER_SIZE (buf); i++) {
if (!isascii(*(data+i)))
if (!isprint(*(data+i)))
return NULL;
}