Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
afbb5ce4
Commit
afbb5ce4
authored
Oct 24, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvr-ms video decoding support
Originally committed as revision 3631 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
db4d9faf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
asf.c
libavformat/asf.c
+2
-0
avienc.c
libavformat/avienc.c
+1
-0
No files found.
libavformat/asf.c
View file @
afbb5ce4
...
...
@@ -295,6 +295,8 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
st
->
codec
.
codec_tag
=
tag1
;
st
->
codec
.
codec_id
=
codec_get_id
(
codec_bmp_tags
,
tag1
);
if
(
tag1
==
MKTAG
(
'D'
,
'V'
,
'R'
,
' '
))
st
->
need_parsing
=
1
;
}
pos2
=
url_ftell
(
pb
);
url_fskip
(
pb
,
gsize
-
(
pos2
-
pos1
+
24
));
...
...
libavformat/avienc.c
View file @
afbb5ce4
...
...
@@ -134,6 +134,7 @@ const CodecTag codec_bmp_tags[] = {
{
CODEC_ID_MPEG1VIDEO
,
MKTAG
(
'V'
,
'C'
,
'R'
,
'2'
)
},
{
CODEC_ID_MPEG1VIDEO
,
0x10000001
},
{
CODEC_ID_MPEG2VIDEO
,
0x10000002
},
{
CODEC_ID_MPEG2VIDEO
,
MKTAG
(
'D'
,
'V'
,
'R'
,
' '
)
},
{
CODEC_ID_MJPEG
,
MKTAG
(
'M'
,
'J'
,
'P'
,
'G'
)
},
{
CODEC_ID_MJPEG
,
MKTAG
(
'L'
,
'J'
,
'P'
,
'G'
)
},
{
CODEC_ID_LJPEG
,
MKTAG
(
'L'
,
'J'
,
'P'
,
'G'
)
},
...
...
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