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
3416d080
Commit
3416d080
authored
Mar 07, 2012
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dv: cosmetics.
parent
e97efece
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
dvdata.c
libavcodec/dvdata.c
+15
-15
No files found.
libavcodec/dvdata.c
View file @
3416d080
...
...
@@ -286,28 +286,28 @@ static const DVprofile dv_profiles[] = {
const
DVprofile
*
avpriv_dv_frame_profile
(
const
DVprofile
*
sys
,
const
uint8_t
*
frame
,
unsigned
buf_size
)
{
int
i
,
dsf
,
stype
;
int
i
,
dsf
,
stype
;
if
(
buf_size
<
80
*
5
+
48
+
4
)
if
(
buf_size
<
80
*
5
+
48
+
4
)
return
NULL
;
dsf
=
(
frame
[
3
]
&
0x80
)
>>
7
;
stype
=
frame
[
80
*
5
+
48
+
3
]
&
0x1f
;
dsf
=
(
frame
[
3
]
&
0x80
)
>>
7
;
stype
=
frame
[
80
*
5
+
48
+
3
]
&
0x1f
;
/* 576i50 25Mbps 4:1:1 is a special case */
if
(
dsf
==
1
&&
stype
==
0
&&
frame
[
4
]
&
0x07
/* the APT field */
)
{
return
&
dv_profiles
[
2
];
}
/* 576i50 25Mbps 4:1:1 is a special case */
if
(
dsf
==
1
&&
stype
==
0
&&
frame
[
4
]
&
0x07
/* the APT field */
)
{
return
&
dv_profiles
[
2
];
}
for
(
i
=
0
;
i
<
FF_ARRAY_ELEMS
(
dv_profiles
);
i
++
)
if
(
dsf
==
dv_profiles
[
i
].
dsf
&&
stype
==
dv_profiles
[
i
].
video_stype
)
return
&
dv_profiles
[
i
];
for
(
i
=
0
;
i
<
FF_ARRAY_ELEMS
(
dv_profiles
);
i
++
)
if
(
dsf
==
dv_profiles
[
i
].
dsf
&&
stype
==
dv_profiles
[
i
].
video_stype
)
return
&
dv_profiles
[
i
];
/* check if old sys matches and assumes corrupted input */
if
(
sys
&&
buf_size
==
sys
->
frame_size
)
return
sys
;
/* check if old sys matches and assumes corrupted input */
if
(
sys
&&
buf_size
==
sys
->
frame_size
)
return
sys
;
return
NULL
;
return
NULL
;
}
const
DVprofile
*
avpriv_dv_codec_profile
(
AVCodecContext
*
codec
)
...
...
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