ext/ffmpeg/gstffmpegcodecmap.c: it's audio/x-wav, not video/x-wav

Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_to_caps):
it's audio/x-wav, not video/x-wav
This commit is contained in:
Benjamin Otte 2004-05-11 01:54:59 +00:00
parent 10415ff400
commit c0e70cc4bc
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_to_caps):
it's audio/x-wav, not video/x-wav
2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
* ext/ffmpeg/gstffmpegdec.c

View file

@ -1213,7 +1213,7 @@ gst_ffmpeg_formatid_to_caps (const gchar * format_name)
} else if (!strcmp (format_name, "avi")) {
caps = gst_caps_new_simple ("video/x-msvideo", NULL);
} else if (!strcmp (format_name, "wav")) {
caps = gst_caps_new_simple ("video/x-wav", NULL);
caps = gst_caps_new_simple ("audio/x-wav", NULL);
} else if (!strcmp (format_name, "swf")) {
caps = gst_caps_new_simple ("application/x-shockwave-flash", NULL);
} else if (!strcmp (format_name, "au")) {