search for: swfdec_audio_flv_render

Displaying 3 results from an estimated 3 matches for "swfdec_audio_flv_render".

2008 May 24
0
[PATCH] Couple of fixes since last round of commits
Hi, - with the changed of its semantics swfdec_audio_flv_render can return rendered unitialized. - remove --fmpeg flag to configure in autogen.sh cheers, rm -------------- next part -------------- A non-text attachment was scrubbed... Name: fix-use-of-initialized-var.diff Type: text/x-diff Size: 429 bytes Desc: not available Url : http://lists.freedesktop.or...
2007 Nov 10
6
[Bug 13167] New: crash firefox if you close tab while playing flash files
http://bugs.freedesktop.org/show_bug.cgi?id=13167 Summary: crash firefox if you close tab while playing flash files Product: swfdec Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: library AssignedTo: swfdec at lists.freedesktop.org
2007 Apr 08
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_audio_flv.c libswfdec/swfdec_audio_flv.h libswfdec/swfdec_audio_stream.c libswfdec/swfdec_audio_stream.h libswfdec/swfdec_buffer.c libswfdec/swfdec_codec_adpcm.c libswfdec/swfdec_codec_audio.c
...t;decoder, buffer); + if (flv->next_timestamp == 0) + swfdec_audio_decoder_push (flv->decoder, NULL); + buffer = swfdec_audio_decoder_pull (flv->decoder); } - g_assert (buffer); g_queue_push_tail (flv->playback_queue, buffer); return buffer; } @@ -144,7 +136,8 @@ swfdec_audio_flv_render (SwfdecAudio *au if (!buffer) break; } - samples = swfdec_sound_buffer_get_n_samples (buffer, flv->out); + samples = swfdec_sound_buffer_get_n_samples (buffer, + swfdec_audio_decoder_get_format (flv->decoder)); if (start) { if (samples <= start) { start -...