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
aba70bb5
Commit
aba70bb5
authored
Jan 09, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing headers to make template files compile (more) standalone
parent
e7373585
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
50 additions
and
0 deletions
+50
-0
ac3enc_template.c
libavcodec/ac3enc_template.c
+4
-0
h264_mb_template.c
libavcodec/h264_mb_template.c
+2
-0
h264_mc_template.c
libavcodec/h264_mc_template.c
+2
-0
h264idct_template.c
libavcodec/h264idct_template.c
+1
-0
hpel_template.c
libavcodec/hpel_template.c
+2
-0
motion_est_template.c
libavcodec/motion_est_template.c
+2
-0
simple_idct_template.c
libavcodec/simple_idct_template.c
+2
-0
videodsp_template.c
libavcodec/videodsp_template.c
+2
-0
dsputil_qns_template.c
libavcodec/x86/dsputil_qns_template.c
+6
-0
hpeldsp_rnd_template.c
libavcodec/x86/hpeldsp_rnd_template.c
+3
-0
mpegvideoenc_template.c
libavcodec/x86/mpegvideoenc_template.c
+6
-0
resample_template.c
libavresample/resample_template.c
+6
-0
rgb2rgb_template.c
libswscale/x86/rgb2rgb_template.c
+2
-0
swscale_template.c
libswscale/x86/swscale_template.c
+5
-0
yuv2rgb_template.c
libswscale/x86/yuv2rgb_template.c
+5
-0
No files found.
libavcodec/ac3enc_template.c
View file @
aba70bb5
...
@@ -28,7 +28,11 @@
...
@@ -28,7 +28,11 @@
#include <stdint.h>
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "libavutil/internal.h"
#include "internal.h"
#include "ac3enc.h"
#include "eac3enc.h"
/* prototypes for static functions in ac3enc_fixed.c and ac3enc_float.c */
/* prototypes for static functions in ac3enc_fixed.c and ac3enc_float.c */
...
...
libavcodec/h264_mb_template.c
View file @
aba70bb5
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "svq3.h"
#undef FUNC
#undef FUNC
#undef PIXEL_SHIFT
#undef PIXEL_SHIFT
...
...
libavcodec/h264_mc_template.c
View file @
aba70bb5
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "h264.h"
#undef MCFUNC
#undef MCFUNC
#if CHROMA_IDC == 1
#if CHROMA_IDC == 1
...
...
libavcodec/h264idct_template.c
View file @
aba70bb5
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include "bit_depth_template.c"
#include "bit_depth_template.c"
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "h264.h"
#include "h264.h"
#include "h264idct.h"
void
FUNCC
(
ff_h264_idct_add
)(
uint8_t
*
_dst
,
int16_t
*
_block
,
int
stride
)
void
FUNCC
(
ff_h264_idct_add
)(
uint8_t
*
_dst
,
int16_t
*
_block
,
int
stride
)
{
{
...
...
libavcodec/hpel_template.c
View file @
aba70bb5
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "libavutil/intreadwrite.h"
#include "pixels.h"
#include "pixels.h"
#include "bit_depth_template.c"
#include "bit_depth_template.c"
...
...
libavcodec/motion_est_template.c
View file @
aba70bb5
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
* Motion estimation template.
* Motion estimation template.
*/
*/
#include "mpegvideo.h"
//Let us hope gcc will remove the unused vars ...(gcc 3.2.2 seems to do it ...)
//Let us hope gcc will remove the unused vars ...(gcc 3.2.2 seems to do it ...)
#define LOAD_COMMON\
#define LOAD_COMMON\
uint32_t av_unused * const score_map= c->score_map;\
uint32_t av_unused * const score_map= c->score_map;\
...
...
libavcodec/simple_idct_template.c
View file @
aba70bb5
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
written by Aaron Holtzman <aholtzma@ess.engr.uvic.ca>)
written by Aaron Holtzman <aholtzma@ess.engr.uvic.ca>)
*/
*/
#include "simple_idct.h"
#include "bit_depth_template.c"
#include "bit_depth_template.c"
#undef W1
#undef W1
...
...
libavcodec/videodsp_template.c
View file @
aba70bb5
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <assert.h>
#include "bit_depth_template.c"
#include "bit_depth_template.c"
static
void
FUNC
(
ff_emulated_edge_mc
)(
uint8_t
*
buf
,
const
uint8_t
*
src
,
static
void
FUNC
(
ff_emulated_edge_mc
)(
uint8_t
*
buf
,
const
uint8_t
*
src
,
...
...
libavcodec/x86/dsputil_qns_template.c
View file @
aba70bb5
...
@@ -22,6 +22,12 @@
...
@@ -22,6 +22,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <assert.h>
#include <stdint.h>
#include "libavutil/common.h"
#include "libavutil/x86/asm.h"
#include "inline_asm.h"
#include "inline_asm.h"
#define MAX_ABS (512 >> (SCALE_OFFSET>0 ? SCALE_OFFSET : 0))
#define MAX_ABS (512 >> (SCALE_OFFSET>0 ? SCALE_OFFSET : 0))
...
...
libavcodec/x86/hpeldsp_rnd_template.c
View file @
aba70bb5
...
@@ -24,6 +24,9 @@
...
@@ -24,6 +24,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stddef.h>
#include <stdint.h>
// put_pixels
// put_pixels
static
void
DEF
(
put
,
pixels8_x2
)(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
)
static
void
DEF
(
put
,
pixels8_x2
)(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
)
{
{
...
...
libavcodec/x86/mpegvideoenc_template.c
View file @
aba70bb5
...
@@ -20,6 +20,12 @@
...
@@ -20,6 +20,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/internal.h"
#include "libavutil/x86/asm.h"
#include "libavcodec/mpegvideo.h"
#undef MMREG_WIDTH
#undef MMREG_WIDTH
#undef MM
#undef MM
#undef MOVQ
#undef MOVQ
...
...
libavresample/resample_template.c
View file @
aba70bb5
...
@@ -18,6 +18,12 @@
...
@@ -18,6 +18,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <math.h>
#include <stdint.h>
#include "libavutil/common.h"
#include "internal.h"
#if defined(CONFIG_RESAMPLE_DBL)
#if defined(CONFIG_RESAMPLE_DBL)
#define SET_TYPE(func) func ## _dbl
#define SET_TYPE(func) func ## _dbl
#define FELEM double
#define FELEM double
...
...
libswscale/x86/rgb2rgb_template.c
View file @
aba70bb5
...
@@ -25,8 +25,10 @@
...
@@ -25,8 +25,10 @@
*/
*/
#include <stddef.h>
#include <stddef.h>
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/x86/asm.h"
#undef PREFETCH
#undef PREFETCH
#undef MOVNTQ
#undef MOVNTQ
...
...
libswscale/x86/swscale_template.c
View file @
aba70bb5
...
@@ -18,6 +18,11 @@
...
@@ -18,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/x86/asm.h"
#include "libswscale/swscale_internal.h"
#undef REAL_MOVNTQ
#undef REAL_MOVNTQ
#undef MOVNTQ
#undef MOVNTQ
#undef PREFETCH
#undef PREFETCH
...
...
libswscale/x86/yuv2rgb_template.c
View file @
aba70bb5
...
@@ -21,6 +21,11 @@
...
@@ -21,6 +21,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/x86/asm.h"
#include "libswscale/swscale_internal.h"
#undef MOVNTQ
#undef MOVNTQ
#undef EMMS
#undef EMMS
#undef SFENCE
#undef SFENCE
...
...
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