Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
2b6c9678
Commit
2b6c9678
authored
Aug 27, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed stupid AR hack in libmpeg2.
parent
9901a6ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
31 deletions
+0
-31
modules/codec/libmpeg2.c
modules/codec/libmpeg2.c
+0
-31
No files found.
modules/codec/libmpeg2.c
View file @
2b6c9678
...
@@ -38,12 +38,6 @@
...
@@ -38,12 +38,6 @@
#include <vlc_codec_synchro.h>
#include <vlc_codec_synchro.h>
/* Aspect ratio (ISO/IEC 13818-2 section 6.3.3, table 6-3) */
#define AR_SQUARE_PICTURE 1
/* square pixels */
#define AR_4_3_PICTURE 2
/* 4:3 picture (TV) */
#define AR_16_9_PICTURE 3
/* 16:9 picture (wide screen) */
#define AR_221_1_PICTURE 4
/* 2.21:1 picture (movie) */
/*****************************************************************************
/*****************************************************************************
* decoder_sys_t : libmpeg2 decoder descriptor
* decoder_sys_t : libmpeg2 decoder descriptor
*****************************************************************************/
*****************************************************************************/
...
@@ -633,31 +627,6 @@ static void GetAR( decoder_t *p_dec )
...
@@ -633,31 +627,6 @@ static void GetAR( decoder_t *p_dec )
if
(
p_dec
->
fmt_in
.
video
.
i_aspect
)
if
(
p_dec
->
fmt_in
.
video
.
i_aspect
)
{
{
p_sys
->
i_aspect
=
p_dec
->
fmt_in
.
video
.
i_aspect
;
p_sys
->
i_aspect
=
p_dec
->
fmt_in
.
video
.
i_aspect
;
if
(
p_sys
->
i_aspect
<=
AR_221_1_PICTURE
)
switch
(
p_sys
->
i_aspect
)
{
case
AR_4_3_PICTURE
:
p_sys
->
i_aspect
=
VOUT_ASPECT_FACTOR
*
4
/
3
;
p_sys
->
i_sar_num
=
p_sys
->
p_info
->
sequence
->
picture_height
*
4
;
p_sys
->
i_sar_den
=
p_sys
->
p_info
->
sequence
->
picture_width
*
3
;
break
;
case
AR_16_9_PICTURE
:
p_sys
->
i_aspect
=
VOUT_ASPECT_FACTOR
*
16
/
9
;
p_sys
->
i_sar_num
=
p_sys
->
p_info
->
sequence
->
picture_height
*
16
;
p_sys
->
i_sar_den
=
p_sys
->
p_info
->
sequence
->
picture_width
*
9
;
break
;
case
AR_221_1_PICTURE
:
p_sys
->
i_aspect
=
VOUT_ASPECT_FACTOR
*
221
/
100
;
p_sys
->
i_sar_num
=
p_sys
->
p_info
->
sequence
->
picture_height
*
221
;
p_sys
->
i_sar_den
=
p_sys
->
p_info
->
sequence
->
picture_width
*
100
;
break
;
case
AR_SQUARE_PICTURE
:
p_sys
->
i_aspect
=
VOUT_ASPECT_FACTOR
*
p_sys
->
p_info
->
sequence
->
picture_width
/
p_sys
->
p_info
->
sequence
->
picture_height
;
p_sys
->
i_sar_num
=
p_sys
->
i_sar_den
=
1
;
break
;
}
}
}
else
else
{
{
...
...
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