Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c7e3e554
Commit
c7e3e554
authored
Feb 10, 2013
by
Ronald S. Bultje
Committed by
Michael Niedermayer
Feb 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move ff_emulated_edge_mc prototypes to videodsp.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
55e35c98
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
diracdec.c
libavcodec/diracdec.c
+1
-0
dsputil.h
libavcodec/dsputil.h
+0
-8
videodsp.h
libavcodec/videodsp.h
+8
-0
dsputil_mmx.c
libavcodec/x86/dsputil_mmx.c
+1
-0
No files found.
libavcodec/diracdec.c
View file @
c7e3e554
...
...
@@ -37,6 +37,7 @@
#include "dirac_dwt.h"
#include "dirac.h"
#include "diracdsp.h"
#include "videodsp.h" // for ff_emulated_edge_mc_8
/**
* The spec limits the number of wavelet decompositions to 4 for both
...
...
libavcodec/dsputil.h
View file @
c7e3e554
...
...
@@ -139,14 +139,6 @@ void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);
void
ff_init_scantable_permutation
(
uint8_t
*
idct_permutation
,
int
idct_permutation_type
);
#define EMULATED_EDGE(depth) \
void ff_emulated_edge_mc_ ## depth (uint8_t *buf, const uint8_t *src, ptrdiff_t linesize,\
int block_w, int block_h,\
int src_x, int src_y, int w, int h);
EMULATED_EDGE
(
8
)
EMULATED_EDGE
(
16
)
/**
* DSPContext.
*/
...
...
libavcodec/videodsp.h
View file @
c7e3e554
...
...
@@ -29,6 +29,14 @@
#include <stddef.h>
#include <stdint.h>
#define EMULATED_EDGE(depth) \
void ff_emulated_edge_mc_ ## depth (uint8_t *buf, const uint8_t *src, ptrdiff_t linesize,\
int block_w, int block_h,\
int src_x, int src_y, int w, int h);
EMULATED_EDGE
(
8
)
EMULATED_EDGE
(
16
)
typedef
struct
VideoDSPContext
{
/**
* Copy a rectangular area of samples to a temporary buffer and replicate
...
...
libavcodec/x86/dsputil_mmx.c
View file @
c7e3e554
...
...
@@ -29,6 +29,7 @@
#include "libavcodec/h264dsp.h"
#include "libavcodec/mpegvideo.h"
#include "libavcodec/simple_idct.h"
#include "libavcodec/videodsp.h"
#include "dsputil_mmx.h"
#include "idct_xvid.h"
#include "diracdsp_mmx.h"
...
...
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