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
cae8addf
Commit
cae8addf
authored
Oct 20, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sws_scale_ordered() is deprecated in newer ffmpeg
parent
7b32ae17
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
modules/codec/ffmpeg/scale.c
modules/codec/ffmpeg/scale.c
+13
-5
No files found.
modules/codec/ffmpeg/scale.c
View file @
cae8addf
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
#include "ffmpeg.h"
#include "ffmpeg.h"
/* Version checking */
/* Version checking */
#if ( (defined(HAVE_FFMPEG_SWSCALE_H) || defined(HAVE_LIBSWSCALE_TREE)) &&
LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0
) )
#if ( (defined(HAVE_FFMPEG_SWSCALE_H) || defined(HAVE_LIBSWSCALE_TREE)) &&
(LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0)
) )
/*****************************************************************************
/*****************************************************************************
* filter_sys_t : filter descriptor
* filter_sys_t : filter descriptor
...
@@ -84,6 +84,7 @@ int E_(OpenScaler)( vlc_object_t *p_this )
...
@@ -84,6 +84,7 @@ int E_(OpenScaler)( vlc_object_t *p_this )
vlc_value_t
val
;
vlc_value_t
val
;
unsigned
int
i_fmt_in
,
i_fmt_out
;
unsigned
int
i_fmt_in
,
i_fmt_out
;
unsigned
int
i_cpu
;
int
i_sws_mode
;
int
i_sws_mode
;
float
sws_lum_gblur
=
0
.
0
,
sws_chr_gblur
=
0
.
0
;
float
sws_lum_gblur
=
0
.
0
,
sws_chr_gblur
=
0
.
0
;
...
@@ -115,7 +116,7 @@ int E_(OpenScaler)( vlc_object_t *p_this )
...
@@ -115,7 +116,7 @@ int E_(OpenScaler)( vlc_object_t *p_this )
swscale_fast_memcpy
=
p_filter
->
p_libvlc
->
pf_memcpy
;
swscale_fast_memcpy
=
p_filter
->
p_libvlc
->
pf_memcpy
;
/* Set CPU capabilities */
/* Set CPU capabilities */
unsigned
i_cpu
=
vlc_CPU
();
i_cpu
=
vlc_CPU
();
p_sys
->
i_cpu_mask
=
0
;
p_sys
->
i_cpu_mask
=
0
;
if
(
i_cpu
&
CPU_CAPABILITY_MMX
)
if
(
i_cpu
&
CPU_CAPABILITY_MMX
)
{
{
...
@@ -154,7 +155,8 @@ int E_(OpenScaler)( vlc_object_t *p_this )
...
@@ -154,7 +155,8 @@ int E_(OpenScaler)( vlc_object_t *p_this )
default:
p_sys
->
i_sws_flags
=
SWS_FAST_BILINEAR
;
i_sws_mode
=
0
;
break
;
default:
p_sys
->
i_sws_flags
=
SWS_FAST_BILINEAR
;
i_sws_mode
=
0
;
break
;
}
}
p_sys
->
p_src_filter
=
0
;
p_sys
->
p_dst_filter
=
0
;
p_sys
->
p_src_filter
=
NULL
;
p_sys
->
p_dst_filter
=
NULL
;
p_sys
->
p_src_filter
=
p_sys
->
p_src_filter
=
sws_getDefaultFilter
(
sws_lum_gblur
,
sws_chr_gblur
,
sws_getDefaultFilter
(
sws_lum_gblur
,
sws_chr_gblur
,
sws_lum_sharpen
,
sws_chr_sharpen
,
sws_lum_sharpen
,
sws_chr_sharpen
,
...
@@ -288,9 +290,15 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
...
@@ -288,9 +290,15 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
dst_stride
[
i_plane
]
=
p_pic_dst
->
p
[
i_plane
].
i_pitch
;
dst_stride
[
i_plane
]
=
p_pic_dst
->
p
[
i_plane
].
i_pitch
;
}
}
#if LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0)
sws_scale
(
p_sys
->
ctx
,
src
,
src_stride
,
0
,
p_filter
->
fmt_in
.
video
.
i_height
,
dst
,
dst_stride
);
#else
sws_scale_ordered
(
p_sys
->
ctx
,
src
,
src_stride
,
sws_scale_ordered
(
p_sys
->
ctx
,
src
,
src_stride
,
0
,
p_filter
->
fmt_in
.
video
.
i_height
,
0
,
p_filter
->
fmt_in
.
video
.
i_height
,
dst
,
dst_stride
);
dst
,
dst_stride
);
#endif
p_pic_dst
->
date
=
p_pic
->
date
;
p_pic_dst
->
date
=
p_pic
->
date
;
p_pic_dst
->
b_force
=
p_pic
->
b_force
;
p_pic_dst
->
b_force
=
p_pic
->
b_force
;
...
...
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