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
5c924c9b
Commit
5c924c9b
authored
Feb 27, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dv: Correctly identify CDVC profile
Fixes Ticket2177 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
21c2e201
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
dv_profile.c
libavcodec/dv_profile.c
+5
-1
No files found.
libavcodec/dv_profile.c
View file @
5c924c9b
...
...
@@ -298,7 +298,11 @@ const DVprofile* avpriv_dv_frame_profile2(AVCodecContext* codec, const DVprofile
return
&
dv_profiles
[
2
];
}
if
(
stype
==
0
&&
codec
&&
codec
->
codec_tag
==
AV_RL32
(
"dvsd"
)
&&
codec
->
coded_width
==
720
&&
codec
->
coded_height
==
576
)
if
(
stype
==
0
&&
codec
&&
(
codec
->
codec_tag
==
AV_RL32
(
"dvsd"
)
||
codec
->
codec_tag
==
AV_RL32
(
"CDVC"
))
&&
codec
->
coded_width
==
720
&&
codec
->
coded_height
==
576
)
return
&
dv_profiles
[
1
];
for
(
i
=
0
;
i
<
FF_ARRAY_ELEMS
(
dv_profiles
);
i
++
)
...
...
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