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
a3ab7c32
Commit
a3ab7c32
authored
Jul 20, 2010
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asfdec: Handle asf_jfif_media
Originally committed as revision 24351 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
7428c8f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
asfdec.c
libavformat/asfdec.c
+3
-0
No files found.
libavformat/asfdec.c
View file @
a3ab7c32
...
@@ -275,6 +275,9 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
...
@@ -275,6 +275,9 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
type
=
AVMEDIA_TYPE_AUDIO
;
type
=
AVMEDIA_TYPE_AUDIO
;
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_video_stream
))
{
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_video_stream
))
{
type
=
AVMEDIA_TYPE_VIDEO
;
type
=
AVMEDIA_TYPE_VIDEO
;
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_jfif_media
))
{
type
=
AVMEDIA_TYPE_VIDEO
;
st
->
codec
->
codec_id
=
CODEC_ID_MJPEG
;
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_command_stream
))
{
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_command_stream
))
{
type
=
AVMEDIA_TYPE_DATA
;
type
=
AVMEDIA_TYPE_DATA
;
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_ext_stream_embed_stream_header
))
{
}
else
if
(
!
guidcmp
(
&
g
,
&
ff_asf_ext_stream_embed_stream_header
))
{
...
...
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