Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f28b106b
Commit
f28b106b
authored
Jun 27, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Theora framesize calculation patch by Kevin H. Patterson (kevpatt at khptech dot com)
parent
e1dc62de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
THANKS
THANKS
+1
-0
modules/codec/theora.c
modules/codec/theora.c
+3
-3
No files found.
THANKS
View file @
f28b106b
...
...
@@ -83,6 +83,7 @@ John Paul Lorenti <jpl31 at columbia.edu> - ALSA device selection patch
Jonas Larsen <jonas at vrt.dk> - Danish translation
Julien Blache <jb at technologeek.org> - disc ejection code
kty0ne - WinAmp 5 skin for VLC
Kevin H. Patterson <kevpatt at khptech dot com> - Theora framesize calculation patch by Kevin H. Patterson (kevpatt at khptech dot com
Laurent Jonqueres <laurent_jonqueres at yahoo.fr> - Occitan localization
Laurent Mutricy <laurent.mutricy at ecl2005 dot ec-lyon dot fr> - HTTP interface fixes
Lorena Gomes - Catalan translation
...
...
modules/codec/theora.c
View file @
f28b106b
...
...
@@ -294,8 +294,8 @@ static int ProcessHeaders( decoder_t *p_dec )
if
(
p_sys
->
ti
.
aspect_denominator
&&
p_sys
->
ti
.
aspect_numerator
)
{
p_dec
->
fmt_out
.
video
.
i_aspect
=
((
int64_t
)
VOUT_ASPECT_FACTOR
)
*
(
p_sys
->
ti
.
aspect_numerator
*
p_
sys
->
ti
.
width
)
/
(
p_sys
->
ti
.
aspect_denominator
*
p_
sys
->
ti
.
height
);
(
p_sys
->
ti
.
aspect_numerator
*
p_
dec
->
fmt_out
.
video
.
i_
width
)
/
(
p_sys
->
ti
.
aspect_denominator
*
p_
dec
->
fmt_out
.
video
.
i_
height
);
}
else
{
...
...
@@ -557,7 +557,7 @@ static void theora_CopyPicture( decoder_t *p_dec, picture_t *p_pic,
i_src_yoffset
/=
2
;
}
p_src
+=
(
i_src_yoffset
*
i_src_stride
+
i_src_
y
offset
);
p_src
+=
(
i_src_yoffset
*
i_src_stride
+
i_src_
x
offset
);
for
(
i_line
=
0
;
i_line
<
p_pic
->
p
[
i_plane
].
i_visible_lines
;
i_line
++
)
{
...
...
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