Commit 28ef18e5 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

DVCPRO25 and 50 in AVI...

parent f8e862a3
......@@ -524,7 +524,9 @@ static int Open( vlc_object_t * p_this )
msg_Dbg( p_demux, "stream[%d] iavs with handler %4.4s", i, (char *)&p_strh->i_handler );
if( p_strh->i_handler == FOURCC_dvsd ||
p_strh->i_handler == FOURCC_dvhd ||
p_strh->i_handler == FOURCC_dvsl )
p_strh->i_handler == FOURCC_dvsl ||
p_strh->i_handler == FOURCC_dv25 ||
p_strh->i_handler == FOURCC_dv50 )
{
tk->p_out_muxed = stream_DemuxNew( p_demux, (char *)"rawdv", p_demux->out );
if( !tk->p_out_muxed )
......
......@@ -370,3 +370,5 @@ void AVI_ChunkFreeRoot( stream_t *, avi_chunk_t *p_chk );
#define FOURCC_dvsd VLC_FOURCC('d','v','s','d')
#define FOURCC_dvhd VLC_FOURCC('d','v','h','d')
#define FOURCC_dvsl VLC_FOURCC('d','v','s','l')
#define FOURCC_dv25 VLC_FOURCC('d','v','2','5')
#define FOURCC_dv50 VLC_FOURCC('d','v','5','0')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment