Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
457
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
b1b72b63
Commit
b1b72b63
authored
18 years ago
by
Christophe Massiot
Browse files
Options
Downloads
Patches
Plain Diff
* modules/codec/ffmpeg/encoder.c: MPEG compliance fixes for large pictures
and low delay streams.
parent
bb5f959c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/codec/ffmpeg/encoder.c
+5
-0
5 additions, 0 deletions
modules/codec/ffmpeg/encoder.c
with
5 additions
and
0 deletions
modules/codec/ffmpeg/encoder.c
+
5
−
0
View file @
b1b72b63
...
...
@@ -389,6 +389,9 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
p_context
->
width
=
p_enc
->
fmt_in
.
video
.
i_width
;
p_context
->
height
=
p_enc
->
fmt_in
.
video
.
i_height
;
if
(
p_enc
->
fmt_out
.
i_codec
==
VLC_FOURCC
(
'm'
,
'p'
,
'2'
,
'v'
)
&&
(
p_context
->
width
>
720
||
p_context
->
height
>
576
)
)
p_context
->
level
=
4
;
/* High level */
#if LIBAVCODEC_BUILD >= 4754
p_context
->
time_base
.
num
=
p_enc
->
fmt_in
.
video
.
i_frame_rate_base
;
...
...
@@ -420,6 +423,8 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
p_context
->
max_b_frames
=
__MAX
(
__MIN
(
p_sys
->
i_b_frames
,
FF_MAX_B_FRAMES
),
0
);
p_context
->
b_frame_strategy
=
0
;
if
(
!
p_context
->
max_b_frames
)
p_context
->
flags
|=
CODEC_FLAG_LOW_DELAY
;
#if LIBAVCODEC_BUILD >= 4687
av_reduce
(
&
i_aspect_num
,
&
i_aspect_den
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment