Displaying 3 results from an estimated 3 matches for "has_metadata".
Did you mean:
27s_metadata
2013 Jan 14
0
[LLVMdev] OCaml binding: error with the function "has_metadata"
Hi all,
I am using the OCaml binding and I get the following error with the function "Llvm.has_metadata":
Assertion failed: (isa<X>(Val) && "cast<Ty>() argument of incompatible type!"), function cast, file .../llvm-3.2.src/include/llvm/Support/Casting.h, line 208.
Abort trap: 6
I am using the latest 3.2 release from the LLVM download page and this is a small code...
2007 Oct 17
0
28 commits - configure.ac debian/changelog debian/control debian/copyright debian/.gitignore debian/libswfdec0.dirs debian/libswfdec0.files debian/libswfdec0.shlibs debian/libswfdec-dev.dirs debian/libswfdec-dev.files debian/rules debian/swf-player.dirs
...swfdec_swf_decoder.h
@@ -82,6 +82,8 @@ struct _SwfdecSwfDecoder
GArray ** root_actions; /* actions to be executed by the root sprite */
GHashTable * scripts; /* buffer -> script mapping for all scripts */
+ gboolean use_network; /* allow network or local access */
+ gboolean has_metadata; /* TRUE if this file contains metadata */
gboolean protection; /* TRUE is this file is protected and may not be edited */
char * password; /* MD5'd password to open for editing or NULL if may not be opened */
diff --git a/libswfdec/swfdec_tag.c b/libswfdec/swfdec_tag.c
index...
2007 Jun 15
0
Branch 'as' - 5 commits - libswfdec/swfdec_as_native_function.c libswfdec/swfdec_edittext.c libswfdec/swfdec_edittext.h libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_morphshape.h
...*s)
-{
- return tag_func_define_font_info (s, 1);
-}
-
-static int
-tag_func_define_font_info_2 (SwfdecSwfDecoder *s)
-{
- return tag_func_define_font_info (s, 2);
-}
-
-static int
-tag_func_file_attributes (SwfdecSwfDecoder *s)
+tag_func_file_attributes (SwfdecSwfDecoder *s, guint tag)
{
int has_metadata, use_network;
@@ -535,7 +509,7 @@ tag_func_file_attributes (SwfdecSwfDecod
}
int
-tag_func_export_assets (SwfdecSwfDecoder * s)
+tag_func_export_assets (SwfdecSwfDecoder * s, guint tag)
{
SwfdecBits *bits = &s->b;
guint count, i;
@@ -568,7 +542,7 @@ tag_func_export_assets (Swfde...