search for: video_codecs

Displaying 4 results from an estimated 4 matches for "video_codecs".

Did you mean: video_code
2007 Oct 14
0
4 commits - libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_sound.c
...n_new (SwfdecVideoCodec codec) +{ + SwfdecVideoDecoder *ret; + + ret = swfdec_video_decoder_screen_new (codec); + if (ret == NULL) + ret = swfdec_video_decoder_vp6_alpha_new (codec); + + return ret; +} + +struct { + const char * name; + SwfdecVideoDecoder * (* func) (SwfdecVideoCodec); +} video_codecs[] = { + { "builtin", swfdec_video_decoder_builtin_new }, +#ifdef HAVE_FFMPEG + { "ffmpeg", swfdec_video_decoder_ffmpeg_new }, +#endif +#ifdef HAVE_GST + { "gst", swfdec_video_decoder_gst_new }, +#endif + { NULL, } +}; + /** * swfdec_video_decoder_new: * @codec...
2007 Oct 28
0
5 commits - autogen.sh configure.ac libswfdec-gtk/Makefile.am libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_player.c test/trace
...dio_decoder_ffmpeg_new }, #endif diff --git a/libswfdec/swfdec_codec_video.c b/libswfdec/swfdec_codec_video.c index 93bc6dd..bfde110 100644 --- a/libswfdec/swfdec_codec_video.c +++ b/libswfdec/swfdec_codec_video.c @@ -44,12 +44,12 @@ struct { SwfdecVideoDecoder * (* func) (SwfdecVideoCodec); } video_codecs[] = { { "builtin", swfdec_video_decoder_builtin_new }, -#ifdef HAVE_FFMPEG - { "ffmpeg", swfdec_video_decoder_ffmpeg_new }, -#endif #ifdef HAVE_GST { "gst", swfdec_video_decoder_gst_new }, #endif +#ifdef HAVE_FFMPEG + { "ffmpeg", swfdec_video_decode...
2007 Oct 15
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c
...video.c index bdcce56..291c24d 100644 --- a/libswfdec/swfdec_codec_video.c +++ b/libswfdec/swfdec_codec_video.c @@ -73,6 +73,7 @@ swfdec_video_decoder_new (SwfdecVideoCodec codec) list = g_getenv ("SWFDEC_CODEC"); if (list == NULL) { guint i; + ret = NULL; for (i = 0; video_codecs[i].name != NULL; i++) { ret = video_codecs[i].func (codec); if (ret) commit 3247196e467bdeafa5414229bdfd4722ac071ce9 Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Mon Oct 15 12:30:58 2007 +0300 Make TextField setTextFormat merge any styles that become equal diff...
2007 Nov 08
0
configure.ac libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_playback_alsa.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_types.c libswfdec/swfdec_audio_flv.c libswfdec/swfdec_audio_flv.h
...ec codec) +swfdec_video_decoder_builtin_new (guint codec) { SwfdecVideoDecoder *ret; @@ -41,7 +41,7 @@ swfdec_video_decoder_builtin_new (SwfdecVideoCodec codec) struct { const char * name; - SwfdecVideoDecoder * (* func) (SwfdecVideoCodec); + SwfdecVideoDecoder * (* func) (guint); } video_codecs[] = { { "builtin", swfdec_video_decoder_builtin_new }, #ifdef HAVE_GST @@ -63,7 +63,7 @@ struct { * Returns: **/ SwfdecVideoDecoder * -swfdec_video_decoder_new (SwfdecVideoCodec codec) +swfdec_video_decoder_new (guint codec) { SwfdecVideoDecoder *ret; const char *list; @@...