Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
6eae8331
Commit
6eae8331
authored
Apr 22, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/libmpeg2.c: fixed aspect ratio problem.
parent
7bc6a249
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/codec/libmpeg2.c
modules/codec/libmpeg2.c
+3
-3
No files found.
modules/codec/libmpeg2.c
View file @
6eae8331
...
...
@@ -2,7 +2,7 @@
* libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: libmpeg2.c,v 1.1
2 2003/04/20 23:42:17 massiot
Exp $
* $Id: libmpeg2.c,v 1.1
3 2003/04/22 12:54:49 gbazin
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -234,9 +234,9 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
else
{
/* Use the value provided in the MPEG sequence header */
i_aspect
=
((
uint64_t
)
p_dec
->
p_info
->
sequence
->
width
)
*
i_aspect
=
((
uint64_t
)
p_dec
->
p_info
->
sequence
->
display_
width
)
*
p_dec
->
p_info
->
sequence
->
pixel_width
*
VOUT_ASPECT_FACTOR
/
p_dec
->
p_info
->
sequence
->
height
/
p_dec
->
p_info
->
sequence
->
display_
height
/
p_dec
->
p_info
->
sequence
->
pixel_height
;
}
...
...
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