Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
28ef18e5
Commit
28ef18e5
authored
Feb 02, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DVCPRO25 and 50 in AVI...
parent
f8e862a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+3
-1
modules/demux/avi/libavi.h
modules/demux/avi/libavi.h
+2
-0
No files found.
modules/demux/avi/avi.c
View file @
28ef18e5
...
...
@@ -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
)
...
...
modules/demux/avi/libavi.h
View file @
28ef18e5
...
...
@@ -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')
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment