search for: 2f3dec0

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

2007 Oct 29
0
2 commits - libswfdec/swfdec_sound.c libswfdec/swfdec_text_field_movie.c
...aphs, paragraph); p = end; commit be21f00c2fb50f5e6dd6d120e035006644f6e643 Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Mon Oct 29 20:21:58 2007 +0200 Add SWFDEC_FIXME about sound envelopes diff --git a/libswfdec/swfdec_sound.c b/libswfdec/swfdec_sound.c index 64e22a3..2f3dec0 100644 --- a/libswfdec/swfdec_sound.c +++ b/libswfdec/swfdec_sound.c @@ -351,6 +351,7 @@ swfdec_sound_parse_chunk (SwfdecSwfDecoder *s, SwfdecBits *b, int id) chunk->loop_count = 1; } if (has_envelope) { + SWFDEC_FIXME ("support for sound envelopes not implemented");...
2007 Oct 31
0
5 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_audio.c libswfdec/swfdec_sound.c libswfdec/swfdec_xml.c
...return 1 << (3 - (format >> 2)); } commit 56407f55976fc53dad38b4ec6191fd360efcecc1 Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Tue Oct 30 10:44:27 2007 +0200 Fixes to sound envelope parsing diff --git a/libswfdec/swfdec_sound.c b/libswfdec/swfdec_sound.c index 2f3dec0..0e7f831 100644 --- a/libswfdec/swfdec_sound.c +++ b/libswfdec/swfdec_sound.c @@ -303,7 +303,8 @@ swfdec_sound_parse_chunk (SwfdecSwfDecoder *s, SwfdecBits *b, int id) int has_loops; int has_out_point; int has_in_point; - guint i, j; + guint i, j, n_envelopes; + GArray *envelopes; Sw...