Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
804f5284
Commit
804f5284
authored
Jan 31, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CrystalHD: small fix for 1088 height
parent
7641f570
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
modules/codec/crystalhd.c
modules/codec/crystalhd.c
+5
-0
No files found.
modules/codec/crystalhd.c
View file @
804f5284
...
...
@@ -149,6 +149,9 @@ static int OpenDecoder( vlc_object_t *p_this )
/* Not ready for production yet
case VLC_CODEC_MP4V:
i_bcm_codec_subtype = BC_MSUBTYPE_DIVX;
break;
case VLC_CODEC_DIV3:
i_bcm_codec_subtype = BC_MSUBTYPE_DIVX311;
break; */
default:
return
VLC_EGENERIC
;
...
...
@@ -463,6 +466,8 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
break; */
p_dec
->
fmt_out
.
video
.
i_width
=
proc_out
.
PicInfo
.
width
;
p_dec
->
fmt_out
.
video
.
i_height
=
proc_out
.
PicInfo
.
height
;
if
(
proc_out
.
PicInfo
.
height
==
1088
)
p_dec
->
fmt_out
.
video
.
i_height
=
1080
;
#define setAR( a, b, c ) case a: p_dec->fmt_out.video.i_sar_num = b; p_dec->fmt_out.video.i_sar_den = c; break;
switch
(
proc_out
.
PicInfo
.
aspect_ratio
)
{
...
...
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