Displaying 2 results from an estimated 2 matches for "3e9da94".
Did you mean:
3e9d941
2007 Oct 31
0
2 commits - libswfdec/swfdec_sound.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie_html.c
...gt;tags_open, tag);
commit a69bc92b48bb2fd9fd32e1d0d7f6fd477e1c4a98
Author: Pekka Lampila <pekka.lampila at iki.fi>
Date: Wed Oct 31 12:24:31 2007 +0200
Handle running out of bits in sound envelope parsing better
diff --git a/libswfdec/swfdec_sound.c b/libswfdec/swfdec_sound.c
index 3e9da94..06022bc 100644
--- a/libswfdec/swfdec_sound.c
+++ b/libswfdec/swfdec_sound.c
@@ -356,7 +356,7 @@ swfdec_sound_parse_chunk (SwfdecSwfDecoder *s, SwfdecBits *b, int id)
SWFDEC_LOG (" n_envelopes = %u", chunk->n_envelopes);
}
- for (i = 0; i < chunk->n_envelopes; i++) {...
2007 Oct 31
0
5 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_audio.c libswfdec/swfdec_sound.c libswfdec/swfdec_xml.c
...}
commit 28aa42cf849bfb39112e0e2c366b08ece2372845
Author: Pekka Lampila <pekka.lampila at iki.fi>
Date: Tue Oct 30 19:28:22 2007 +0200
Previous way of reading sound envelopes was still somewhat off, fixed
diff --git a/libswfdec/swfdec_sound.c b/libswfdec/swfdec_sound.c
index 0e7f831..3e9da94 100644
--- a/libswfdec/swfdec_sound.c
+++ b/libswfdec/swfdec_sound.c
@@ -303,8 +303,7 @@ swfdec_sound_parse_chunk (SwfdecSwfDecoder *s, SwfdecBits *b, int id)
int has_loops;
int has_out_point;
int has_in_point;
- guint i, j, n_envelopes;
- GArray *envelopes;
+ guint i, j;
SwfdecSound...