Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
5a02951c
Commit
5a02951c
authored
May 03, 2003
by
Laurent Aimar
Browse files
* transcode: fixed video resizing.
parent
a4a766a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/stream_out/transcode.c
View file @
5a02951c
...
...
@@ -2,7 +2,7 @@
* transcode.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: transcode.c,v 1.1
1
2003/05/03 1
3:18:16
fenrir Exp $
* $Id: transcode.c,v 1.1
2
2003/05/03 1
4:22:47
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -1016,9 +1016,12 @@ static int transcode_video_ffmpeg_process( sout_stream_t *p_stream, sout_stream_
{
/* XXX hack because of copy packetizer and mpeg4video that can failed
detecting size */
if
(
id
->
ff_enc_c
->
width
<=
0
||
id
->
ff_enc_c
->
height
<=
0
)
if
(
id
->
ff_enc_c
->
width
<=
0
)
{
id
->
ff_enc_c
->
width
=
id
->
f_dst
.
i_width
=
id
->
ff_dec_c
->
width
;
}
if
(
id
->
ff_enc_c
->
height
<=
0
)
{
id
->
ff_enc_c
->
height
=
id
->
f_dst
.
i_height
=
id
->
ff_dec_c
->
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