Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
7dfe244f
Commit
7dfe244f
authored
Apr 19, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sws: remove disabled cruft.
parent
975c2734
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
69 deletions
+0
-69
libswscale/rgb2rgb.c
libswscale/rgb2rgb.c
+0
-28
libswscale/rgb2rgb.h
libswscale/rgb2rgb.h
+0
-10
libswscale/swscale.c
libswscale/swscale.c
+0
-8
libswscale/swscale.h
libswscale/swscale.h
+0
-16
libswscale/utils.c
libswscale/utils.c
+0
-7
No files found.
libswscale/rgb2rgb.c
View file @
7dfe244f
...
...
@@ -124,34 +124,6 @@ void sws_rgb2rgb_init(int flags)
#endif
/* HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX */
}
#if LIBSWSCALE_VERSION_MAJOR < 1
void
palette8topacked32
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
)
{
sws_convertPalette8ToPacked32
(
src
,
dst
,
num_pixels
,
palette
);
}
void
palette8topacked24
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
)
{
sws_convertPalette8ToPacked24
(
src
,
dst
,
num_pixels
,
palette
);
}
/**
* Palette is assumed to contain BGR16, see rgb32to16 to convert the palette.
*/
void
palette8torgb16
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
)
{
long
i
;
for
(
i
=
0
;
i
<
num_pixels
;
i
++
)
((
uint16_t
*
)
dst
)[
i
]
=
((
const
uint16_t
*
)
palette
)[
src
[
i
]];
}
void
palette8tobgr16
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
)
{
long
i
;
for
(
i
=
0
;
i
<
num_pixels
;
i
++
)
((
uint16_t
*
)
dst
)[
i
]
=
av_bswap16
(((
const
uint16_t
*
)
palette
)[
src
[
i
]]);
}
#endif
void
rgb32to24
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
src_size
)
{
long
i
;
...
...
libswscale/rgb2rgb.h
View file @
7dfe244f
...
...
@@ -68,16 +68,6 @@ void shuffle_bytes_1230(const uint8_t *src, uint8_t *dst, long src_size);
void
shuffle_bytes_3012
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
src_size
);
void
shuffle_bytes_3210
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
src_size
);
#if LIBSWSCALE_VERSION_MAJOR < 1
/* deprecated, use the public versions in swscale.h */
attribute_deprecated
void
palette8topacked32
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
);
attribute_deprecated
void
palette8topacked24
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
);
/* totally deprecated, please fix code that uses this */
attribute_deprecated
void
palette8torgb16
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
);
attribute_deprecated
void
palette8tobgr16
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
);
#endif
/**
* Height should be a multiple of 2 and width should be a multiple of 16.
* (If this is a problem for anyone then tell me, and I will fix it.)
...
...
libswscale/swscale.c
View file @
7dfe244f
...
...
@@ -1952,14 +1952,6 @@ int sws_scale(SwsContext *c, const uint8_t* const src[], const int srcStride[],
}
}
#if LIBSWSCALE_VERSION_MAJOR < 1
int
sws_scale_ordered
(
SwsContext
*
c
,
const
uint8_t
*
const
src
[],
int
srcStride
[],
int
srcSliceY
,
int
srcSliceH
,
uint8_t
*
dst
[],
int
dstStride
[])
{
return
sws_scale
(
c
,
src
,
srcStride
,
srcSliceY
,
srcSliceH
,
dst
,
dstStride
);
}
#endif
/* Convert the palette to the same packed 32-bit format as the palette */
void
sws_convertPalette8ToPacked32
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
num_pixels
,
const
uint8_t
*
palette
)
{
...
...
libswscale/swscale.h
View file @
7dfe244f
...
...
@@ -223,15 +223,6 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat
int
sws_scale
(
struct
SwsContext
*
context
,
const
uint8_t
*
const
srcSlice
[],
const
int
srcStride
[],
int
srcSliceY
,
int
srcSliceH
,
uint8_t
*
const
dst
[],
const
int
dstStride
[]);
#if LIBSWSCALE_VERSION_MAJOR < 1
/**
* @deprecated Use sws_scale() instead.
*/
int
sws_scale_ordered
(
struct
SwsContext
*
context
,
const
uint8_t
*
const
src
[],
int
srcStride
[],
int
srcSliceY
,
int
srcSliceH
,
uint8_t
*
dst
[],
int
dstStride
[])
attribute_deprecated
;
#endif
/**
* @param inv_table the yuv2rgb coefficients, normally ff_yuv2rgb_coeffs[x]
* @param fullRange if 1 then the luma range is 0..255 if 0 it is 16..235
...
...
@@ -291,13 +282,6 @@ void sws_shiftVec(SwsVector *a, int shift);
*/
SwsVector
*
sws_cloneVec
(
SwsVector
*
a
);
#if LIBSWSCALE_VERSION_MAJOR < 1
/**
* @deprecated Use sws_printVec2() instead.
*/
attribute_deprecated
void
sws_printVec
(
SwsVector
*
a
);
#endif
/**
* Prints with av_log() a textual representation of the vector a
* if log_level <= av_log_level.
...
...
libswscale/utils.c
View file @
7dfe244f
...
...
@@ -1440,13 +1440,6 @@ void sws_printVec2(SwsVector *a, AVClass *log_ctx, int log_level)
}
}
#if LIBSWSCALE_VERSION_MAJOR < 1
void
sws_printVec
(
SwsVector
*
a
)
{
sws_printVec2
(
a
,
NULL
,
AV_LOG_DEBUG
);
}
#endif
void
sws_freeVec
(
SwsVector
*
a
)
{
if
(
!
a
)
return
;
...
...
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