diff options
author | Roman Shaposhnik | 2003-10-31 22:26:26 +0000 |
---|---|---|
committer | Roman Shaposhnik | 2003-10-31 22:26:26 +0000 |
commit | ddaae6a9d1ea69b55b842b65e5c664b1e6d15e13 (patch) | |
tree | d239d8ef3b625cac08f0f8166ec65fe25b2e4b2d /libavformat/dv1394.c | |
parent | 99614dd4e924c1083fdf35f49b1da95971dc416f (diff) |
* 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.
Originally committed as revision 2458 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv1394.c')
-rw-r--r-- | libavformat/dv1394.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dv1394.c b/libavformat/dv1394.c index b0892a3ef4..1cbb0e7eb1 100644 --- a/libavformat/dv1394.c +++ b/libavformat/dv1394.c @@ -45,7 +45,7 @@ struct dv1394_data { 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 @@ static int dv1394_read_header(AVFormatContext * context, AVFormatParameters * ap 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; |