search for: libswfdec_source_files

Displaying 5 results from an estimated 5 matches for "libswfdec_source_files".

2007 Dec 03
0
libswfdec/Makefile.am
...ec/Makefile.am b/libswfdec/Makefile.am index aad0e05..d5cf0da 100644 --- a/libswfdec/Makefile.am +++ b/libswfdec/Makefile.am @@ -14,7 +14,8 @@ endif lib_LTLIBRARIES = libswfdec- at SWFDEC_MAJORMINOR@.la -libswfdec_ at SWFDEC_MAJORMINOR@_la_SOURCES = \ +# these are files that must be in SRCDIR +libswfdec_source_files = \ swfdec_accessibility.c \ swfdec_as_array.c \ swfdec_as_boolean.c \ @@ -76,7 +77,6 @@ libswfdec_ at SWFDEC_MAJORMINOR@_la_SOURCES = \ swfdec_text_renderer.c \ swfdec_text_snapshot.c \ swfdec_transform.c \ - swfdec_enums.c \ swfdec_event.c \ swfdec_external_interface.c \ swfdec_...
2008 Jun 15
1
14 commits - configure.ac swfdec/.gitignore swfdec-gtk/swfdec_gtk_loader.c swfdec-gtk/swfdec_playback_alsa.c swfdec/Makefile.am swfdec/swfdec_asnative.h swfdec/swfdec_as_string.c swfdec/swfdec_audio.c swfdec/swfdec_audio_load.c swfdec/swfdec_audio_load.h
...7c5f830250994363fc61f048336 Author: Benjamin Otte <otte at gnome.org> Date: Fri Jun 13 14:03:24 2008 +0200 implement Sound.loadSound() diff --git a/swfdec/Makefile.am b/swfdec/Makefile.am index 7d39e60..a4ea245 100644 --- a/swfdec/Makefile.am +++ b/swfdec/Makefile.am @@ -38,6 +38,7 @@ libswfdec_source_files = \ swfdec_audio_decoder_uncompressed.c \ $(CODEC_FILES) \ swfdec_audio_event.c \ + swfdec_audio_load.c \ swfdec_audio_flv.c \ swfdec_audio_stream.c \ swfdec_audio_swf_stream.c \ @@ -93,6 +94,7 @@ libswfdec_source_files = \ swfdec_key_as.c \ swfdec_load_object.c \ swfdec_load_obje...
2007 Dec 10
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_color_as.c libswfdec/swfdec_graphic_movie.c libswfdec/swfdec_image_decoder.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_as_drawing.c
...This should lead to less redraws again. But it doesn't seem to yet :o And it doesn't fix all existing bugs either... diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am index d5cf0da..471f2c6 100644 --- a/libswfdec/Makefile.am +++ b/libswfdec/Makefile.am @@ -70,13 +70,6 @@ libswfdec_source_files = \ swfdec_displacement_map_filter.c \ swfdec_draw.c \ swfdec_drop_shadow_filter.c \ - swfdec_text_field.c \ - swfdec_text_field_movie.c \ - swfdec_text_field_movie_as.c \ - swfdec_text_field_movie_html.c \ - swfdec_text_renderer.c \ - swfdec_text_snapshot.c \ - swfdec_transform.c \ swfdec_...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...3 2008 +0100 add initial (compiling) bunch of code that changes policy files handling Everythng compiles, nothing works diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am index 9320e97..985eb28 100644 --- a/libswfdec/Makefile.am +++ b/libswfdec/Makefile.am @@ -113,7 +113,7 @@ libswfdec_source_files = \ swfdec_player_as.c \ swfdec_player_scripting.c \ swfdec_print_job.c \ - swfdec_policy_loader.c \ + swfdec_policy_file.c \ swfdec_rect.c \ swfdec_rectangle.c \ swfdec_resource.c \ @@ -261,7 +261,7 @@ noinst_HEADERS = \ swfdec_path.h \ swfdec_pattern.h \ swfdec_player_internal.h...
2007 Dec 23
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_character.c libswfdec/swfdec_external_interface.c libswfdec/swfdec.h libswfdec/swfdec_movie_as_drawing.c libswfdec/swfdec_player.c libswfdec/swfdec_player.h libswfdec/swfdec_player_internal.h
...ULL which means ExternalInterface is not available. Also implement the _escapeXML, _unescapeXML and _jsQuoteString functions diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am index 471f2c6..322529c 100644 --- a/libswfdec/Makefile.am +++ b/libswfdec/Makefile.am @@ -110,6 +110,7 @@ libswfdec_source_files = \ swfdec_pattern.c \ swfdec_player.c \ swfdec_player_as.c \ + swfdec_player_scripting.c \ swfdec_print_job.c \ swfdec_policy_loader.c \ swfdec_rect.c \ @@ -189,6 +190,7 @@ public_headers = \ swfdec_keys.h \ swfdec_loader.h \ swfdec_player.h \ + swfdec_player_scripting.h \ swfd...