Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FFmpeg MVC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Kovář
FFmpeg MVC
Commits
600b854a
Commit
600b854a
authored
11 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
imgconvert: Move ff_deinterlace_line_*_mmx declarations out of dsputil
parent
1a8d0cf7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavcodec/imgconvert.c
+0
-4
0 additions, 4 deletions
libavcodec/imgconvert.c
libavcodec/imgconvert.h
+18
-0
18 additions, 0 deletions
libavcodec/imgconvert.h
libavcodec/x86/dsputil_x86.h
+0
-12
0 additions, 12 deletions
libavcodec/x86/dsputil_x86.h
with
18 additions
and
16 deletions
libavcodec/imgconvert.c
+
0
−
4
View file @
600b854a
...
...
@@ -39,10 +39,6 @@
#include
"libavutil/pixdesc.h"
#include
"libavutil/imgutils.h"
#if HAVE_MMX_EXTERNAL
#include
"x86/dsputil_x86.h"
#endif
#if HAVE_MMX_EXTERNAL
#define deinterlace_line_inplace ff_deinterlace_line_inplace_mmx
#define deinterlace_line ff_deinterlace_line_mmx
...
...
This diff is collapsed.
Click to expand it.
libavcodec/imgconvert.h
+
18
−
0
View file @
600b854a
...
...
@@ -21,6 +21,24 @@
#include
<stdint.h>
#include
"version.h"
#if FF_API_DEINTERLACE
void
ff_deinterlace_line_mmx
(
uint8_t
*
dst
,
const
uint8_t
*
lum_m4
,
const
uint8_t
*
lum_m3
,
const
uint8_t
*
lum_m2
,
const
uint8_t
*
lum_m1
,
const
uint8_t
*
lum
,
int
size
);
void
ff_deinterlace_line_inplace_mmx
(
const
uint8_t
*
lum_m4
,
const
uint8_t
*
lum_m3
,
const
uint8_t
*
lum_m2
,
const
uint8_t
*
lum_m1
,
const
uint8_t
*
lum
,
int
size
);
#endif
/* FF_API_DEINTERLACE */
/* 1/2^n downscaling functions */
void
ff_shrink22
(
uint8_t
*
dst
,
int
dst_wrap
,
const
uint8_t
*
src
,
int
src_wrap
,
int
width
,
int
height
);
void
ff_shrink44
(
uint8_t
*
dst
,
int
dst_wrap
,
const
uint8_t
*
src
,
int
src_wrap
,
int
width
,
int
height
);
...
...
This diff is collapsed.
Click to expand it.
libavcodec/x86/dsputil_x86.h
+
0
−
12
View file @
600b854a
...
...
@@ -91,18 +91,6 @@ void ff_put_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels,
void
ff_put_pixels16_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_deinterlace_line_mmx
(
uint8_t
*
dst
,
const
uint8_t
*
lum_m4
,
const
uint8_t
*
lum_m3
,
const
uint8_t
*
lum_m2
,
const
uint8_t
*
lum_m1
,
const
uint8_t
*
lum
,
int
size
);
void
ff_deinterlace_line_inplace_mmx
(
const
uint8_t
*
lum_m4
,
const
uint8_t
*
lum_m3
,
const
uint8_t
*
lum_m2
,
const
uint8_t
*
lum_m1
,
const
uint8_t
*
lum
,
int
size
);
#define PIXELS16(STATIC, PFX1, PFX2, TYPE, CPUEXT) \
STATIC void PFX1 ## _pixels16 ## TYPE ## CPUEXT(uint8_t *block, \
const uint8_t *pixels, \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment