search for: 8b7463c

Displaying 2 results from an estimated 2 matches for "8b7463c".

Did you mean: 8b54631c
2007 Jun 26
0
2 commits - libswfdec/swfdec_codec_ffmpeg.c
...fe232d392ddf50e97116724f507cc05a43 (from ed66672b6bd13a613aaf875d2f898cc2f16a47b9) Author: Benjamin Otte <otte at gnome.org> Date: Tue Jun 26 12:32:15 2007 +0200 add support for VP6 to ffmpeg diff --git a/libswfdec/swfdec_codec_ffmpeg.c b/libswfdec/swfdec_codec_ffmpeg.c index 5dc8f3c..8b7463c 100644 --- a/libswfdec/swfdec_codec_ffmpeg.c +++ b/libswfdec/swfdec_codec_ffmpeg.c @@ -270,6 +270,9 @@ swfdec_video_decoder_ffmpeg_new (SwfdecV case SWFDEC_VIDEO_FORMAT_SCREEN: id = CODEC_ID_FLASHSV; break; + case SWFDEC_VIDEO_FORMAT_VP6: + id = CODEC_ID_VP6F; + brea...
2007 Jun 27
0
Branch 'as' - 16 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_script_function.c
...6724f507cc05a43) Author: Benjamin Otte <otte at gnome.org> Date: Tue Jun 26 13:35:01 2007 +0200 initialize the struct with 0ed members Avoids SEGV when assuming the swscaler context is empty. diff --git a/libswfdec/swfdec_codec_ffmpeg.c b/libswfdec/swfdec_codec_ffmpeg.c index 8b7463c..c80f117 100644 --- a/libswfdec/swfdec_codec_ffmpeg.c +++ b/libswfdec/swfdec_codec_ffmpeg.c @@ -280,7 +280,7 @@ swfdec_video_decoder_ffmpeg_new (SwfdecV if (ctx == NULL) return NULL; - codec = g_new (SwfdecVideoDecoderFFMpeg, 1); + codec = g_new0 (SwfdecVideoDecoderFFMpeg, 1); codec-...