Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
x264
Commits
6a85cf34
Commit
6a85cf34
authored
Jul 25, 2008
by
Loic Le Loarer
Committed by
Loren Merritt
Jul 25, 2008
Browse files
add interlacing to the list of stuff checked by x264_validate_levels
parent
5a9231a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
encoder/set.c
View file @
6a85cf34
...
...
@@ -559,6 +559,7 @@ int x264_validate_levels( x264_t *h, int verbose )
CHECK
(
"VBV bitrate"
,
l
->
bitrate
,
h
->
param
.
rc
.
i_vbv_max_bitrate
);
CHECK
(
"VBV buffer"
,
l
->
cpb
,
h
->
param
.
rc
.
i_vbv_buffer_size
);
CHECK
(
"MV range"
,
l
->
mv_range
,
h
->
param
.
analyse
.
i_mv_range
);
CHECK
(
"interlaced"
,
!
l
->
frame_only
,
h
->
param
.
b_interlaced
);
if
(
h
->
param
.
i_fps_den
>
0
)
CHECK
(
"MB rate"
,
l
->
mbps
,
(
int64_t
)
mbs
*
h
->
param
.
i_fps_num
/
h
->
param
.
i_fps_den
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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