search for: swfdec_load_sound_mp3_parse_id3v2

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

2008 Oct 14
1
[Bug 18061] New: stackoverflow.com podcast player not working
...op.org Summary says it all, that's the relevant messages: SWFDEC: WARN : swfdec_movie_asprops.c(213): mc_width_set: trying to set width to a non-finite value, ignoring Loading stream: http://cdn.conversationsnetwork.org/ITC.SO-Episode25-2008.10.07.mp3 SWFDEC: FIXME: swfdec_load_sound.c(128): swfdec_load_sound_mp3_parse_id3v2: implement ID3v2 parsing -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug.
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
...dec_sandbox.h" +#include "swfdec_stream_target.h" + +/*** SWFDEC_STREAM_TARGET ***/ + +static SwfdecPlayer * +swfdec_load_sound_stream_target_get_player (SwfdecStreamTarget *target) +{ + return SWFDEC_PLAYER (SWFDEC_LOAD_SOUND (target)->target->context); +} + +static gboolean +swfdec_load_sound_mp3_parse_id3v2 (SwfdecLoadSound *sound, SwfdecBufferQueue *queue) +{ + SwfdecBuffer *buffer; + SwfdecBits bits; + guint size; + gboolean footer; + + buffer = swfdec_buffer_queue_peek (queue, 10); + if (buffer == NULL) + return FALSE; + swfdec_bits_init (&bits, buffer); + if (swfdec_bits_get_u8 (&am...