search for: 2c43f9d

Displaying 2 results from an estimated 2 matches for "2c43f9d".

Did you mean: 1c443f9d
2007 Oct 29
0
libswfdec/swfdec_buffer.c
...njamin Otte <otte at gnome.org> Date: Mon Oct 29 14:05:37 2007 +0100 make swfdec_buffer_new_from_file() fallback if mmap() fails This should fix issues with Swfdec on systems with broken or without mmap. diff --git a/libswfdec/swfdec_buffer.c b/libswfdec/swfdec_buffer.c index 2c43f9d..7c86316 100644 --- a/libswfdec/swfdec_buffer.c +++ b/libswfdec/swfdec_buffer.c @@ -240,9 +240,9 @@ swfdec_buffer_free_mapped (unsigned char *data, gpointer priv) * @filename: file to read * @error: return location for a #GError or %NULL * - * Tries to create a buffer for the given @filename...
2007 Oct 11
0
10 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/swfdec_buffer.c libswfdec/swfdec_movie_as_drawing.c test/image test/sound
...-tree 7e8de82a117d33035f9dfb45894d860c2163ead3 (from 4ddda3f1c1054b750cfa2ba83ccefdda50b76a60) Author: Benjamin Otte <otte at gnome.org> Date: Thu Oct 11 12:00:51 2007 +0200 document SwfdecBufferFreeFunc diff --git a/libswfdec/swfdec_buffer.c b/libswfdec/swfdec_buffer.c index f0edd90..2c43f9d 100644 --- a/libswfdec/swfdec_buffer.c +++ b/libswfdec/swfdec_buffer.c @@ -59,6 +59,15 @@ * swfdec_buffer_new_from_file() without the need for a different API. */ +/** + * SwfdecBufferFreeFunc: + * @data: The data to free + * @priv: The private data registered for passing to this function + *...