ext/alsa/gstalsa.h: Remove unused entry.
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Wed, 24 Mar 2004 02:12:30 +0000 (02:12 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Wed, 24 Mar 2004 02:12:30 +0000 (02:12 +0000)
Original commit message from CVS:
* ext/alsa/gstalsa.h:
Remove unused entry.
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
Add cinepak.
* gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
(gst_videodrop_link), (gst_videodrop_chain):
Fix, sort of. Was horribly broken with new capsnego. Bah...

ChangeLog
ext/alsa/gstalsa.h
gst-libs/gst/riff/riff-media.c

index d40d320338769c3e3486a5a3028400ba8d5341f6..330d3aa555b08d8abd645c1cfe28764432b13061 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
+
+       * ext/alsa/gstalsa.h:
+         Remove unused entry.
+       * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
+         Add cinepak.
+       * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
+       (gst_videodrop_link), (gst_videodrop_chain):
+         Fix, sort of. Was horribly broken with new capsnego. Bah...
+
 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
 
        * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
index 96c4e061a417847592c118d616563d9fcb520fea..9b9c9d1ee5703b51e6759a691fa538cea6a0dbf7 100644 (file)
@@ -135,7 +135,6 @@ struct _GstAlsa {
   gchar *                      device;
   gchar *                       cardname;
   snd_pcm_t *                  handle;
-  snd_pcm_info_t *             info;
   guint                                pcm_caps;       /* capabilities of the pcm device, see GstAlsaPcmCaps */
   snd_output_t *               out;
 
index 042651a9ea691d6471d6319a1b7cf1ce6bd1ee56..5e531997d248c531151794cf3bab8a8441a408c5 100644 (file)
@@ -201,6 +201,12 @@ gst_riff_create_video_caps (guint32 codec_fcc,
         *codec_name = g_strdup ("Windows Media Video 9");
       break;
 
+    case GST_MAKE_FOURCC ('c', 'v', 'i', 'd'):
+      caps = gst_caps_new_simple ("video/x-cinepak", NULL);
+      if (codec_name)
+        *codec_name = g_strdup ("Cinepak video");
+      break;
+
     default:
       GST_WARNING ("Unkown video fourcc " GST_FOURCC_FORMAT,
           GST_FOURCC_ARGS (codec_fcc));