diff dv1394.c @ 296:252946de6d3f libavformat

* DV demuxer is now capable of decoding auxilary audio stream. So, everybody who still uses second streo track for dubbing can now export it. * void* -> DVDemuxContext* change (per Fabrice's suggestion). * -dv1394 capture now works in all modes.
author romansh
date Fri, 31 Oct 2003 22:26:26 +0000
parents f174d9c00bce
children 845f9de2c883
line wrap: on
line diff
--- a/dv1394.c	Thu Oct 30 05:40:58 2003 +0000
+++ b/dv1394.c	Fri Oct 31 22:26:26 2003 +0000
@@ -45,7 +45,7 @@
 
     int64_t pts;  /* Current timestamp */
 
-    void* dv_demux; /* Generic DV muxing/demuxing context */
+    DVDemuxContext* dv_demux; /* Generic DV muxing/demuxing context */
 };
 
 /* 
@@ -85,7 +85,7 @@
     struct dv1394_data *dv = context->priv_data;
     const char *video_device;
 
-    dv->dv_demux = dv_init_demux(context, 0, 1);
+    dv->dv_demux = dv_init_demux(context);
     if (!dv->dv_demux)
         goto failed;