From a962c0f40c1bf71b44a67f898a35122f158b6b25 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 24 Jul 2003 08:49:43 +0000 Subject: Add buffer length checks to every typefinding function Original commit message from CVS: Add buffer length checks to every typefinding function --- ext/audiofile/gstaftypes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/audiofile') diff --git a/ext/audiofile/gstaftypes.c b/ext/audiofile/gstaftypes.c index 8765f2b5..26832d76 100644 --- a/ext/audiofile/gstaftypes.c +++ b/ext/audiofile/gstaftypes.c @@ -58,7 +58,7 @@ gst_aftypes_type_find(GstBuffer *buf, gpointer private) int file_format, format_version; gchar *type; - g_print("calling gst_aftypes_type_find\n"); + GST_DEBUG("calling gst_aftypes_type_find"); buffer_wrap->buffer = buf; buffer_wrap->offset = 0; @@ -76,7 +76,7 @@ gst_aftypes_type_find(GstBuffer *buf, gpointer private) file_format = afGetFileFormat (file, &format_version); afCloseFile (file); - g_print("file format: %d\n", file_format); + GST_DEBUG("file format: %d", file_format); /* reject raw data, just in case it is some other format */ if (file_format == AF_FILE_UNKNOWN || -- cgit v1.2.1