Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
5d3d39c7
Commit
5d3d39c7
authored
Feb 07, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsputil: Move fdct function declarations to dct.h
parent
218aefce
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
25 additions
and
20 deletions
+25
-20
dct-test.c
libavcodec/dct-test.c
+1
-1
dct.h
libavcodec/dct.h
+15
-0
dsputil.c
libavcodec/dsputil.c
+1
-0
dsputil.h
libavcodec/dsputil.h
+0
-14
jfdctfst.c
libavcodec/jfdctfst.c
+1
-1
jfdctint_template.c
libavcodec/jfdctint_template.c
+1
-1
jrevdct.c
libavcodec/jrevdct.c
+1
-1
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+1
-0
proresdsp.c
libavcodec/proresdsp.c
+1
-0
dsputilenc_mmx.c
libavcodec/x86/dsputilenc_mmx.c
+1
-0
fdct.c
libavcodec/x86/fdct.c
+1
-1
mpegvideoenc.c
libavcodec/x86/mpegvideoenc.c
+1
-1
No files found.
libavcodec/dct-test.c
View file @
5d3d39c7
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
#include "libavutil/lfg.h"
#include "libavutil/lfg.h"
#include "libavutil/time.h"
#include "libavutil/time.h"
#include "d
sputil
.h"
#include "d
ct
.h"
#include "simple_idct.h"
#include "simple_idct.h"
#include "aandcttab.h"
#include "aandcttab.h"
#include "faandct.h"
#include "faandct.h"
...
...
libavcodec/dct.h
View file @
5d3d39c7
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
#ifndef AVCODEC_DCT_H
#ifndef AVCODEC_DCT_H
#define AVCODEC_DCT_H
#define AVCODEC_DCT_H
#include <stdint.h>
#include "rdft.h"
#include "rdft.h"
struct
DCTContext
{
struct
DCTContext
{
...
@@ -49,4 +51,17 @@ void ff_dct_end (DCTContext *s);
...
@@ -49,4 +51,17 @@ void ff_dct_end (DCTContext *s);
void
ff_dct_init_x86
(
DCTContext
*
s
);
void
ff_dct_init_x86
(
DCTContext
*
s
);
void
ff_fdct_ifast
(
int16_t
*
data
);
void
ff_fdct_ifast248
(
int16_t
*
data
);
void
ff_jpeg_fdct_islow_8
(
int16_t
*
data
);
void
ff_jpeg_fdct_islow_10
(
int16_t
*
data
);
void
ff_fdct248_islow_8
(
int16_t
*
data
);
void
ff_fdct248_islow_10
(
int16_t
*
data
);
void
ff_j_rev_dct
(
int16_t
*
data
);
void
ff_fdct_mmx
(
int16_t
*
block
);
void
ff_fdct_mmxext
(
int16_t
*
block
);
void
ff_fdct_sse2
(
int16_t
*
block
);
#endif
/* AVCODEC_DCT_H */
#endif
/* AVCODEC_DCT_H */
libavcodec/dsputil.c
View file @
5d3d39c7
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
#include "libavutil/internal.h"
#include "libavutil/internal.h"
#include "avcodec.h"
#include "avcodec.h"
#include "copy_block.h"
#include "copy_block.h"
#include "dct.h"
#include "dsputil.h"
#include "dsputil.h"
#include "simple_idct.h"
#include "simple_idct.h"
#include "faandct.h"
#include "faandct.h"
...
...
libavcodec/dsputil.h
View file @
5d3d39c7
...
@@ -35,20 +35,6 @@
...
@@ -35,20 +35,6 @@
//#define DEBUG
//#define DEBUG
/* dct code */
void
ff_fdct_ifast
(
int16_t
*
data
);
void
ff_fdct_ifast248
(
int16_t
*
data
);
void
ff_jpeg_fdct_islow_8
(
int16_t
*
data
);
void
ff_jpeg_fdct_islow_10
(
int16_t
*
data
);
void
ff_fdct248_islow_8
(
int16_t
*
data
);
void
ff_fdct248_islow_10
(
int16_t
*
data
);
void
ff_j_rev_dct
(
int16_t
*
data
);
void
ff_fdct_mmx
(
int16_t
*
block
);
void
ff_fdct_mmxext
(
int16_t
*
block
);
void
ff_fdct_sse2
(
int16_t
*
block
);
/* encoding scans */
/* encoding scans */
extern
const
uint8_t
ff_alternate_horizontal_scan
[
64
];
extern
const
uint8_t
ff_alternate_horizontal_scan
[
64
];
...
...
libavcodec/jfdctfst.c
View file @
5d3d39c7
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "d
sputil
.h"
#include "d
ct
.h"
#define DCTSIZE 8
#define DCTSIZE 8
#define GLOBAL(x) x
#define GLOBAL(x) x
...
...
libavcodec/jfdctint_template.c
View file @
5d3d39c7
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
*/
*/
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "d
sputil
.h"
#include "d
ct
.h"
#include "bit_depth_template.c"
#include "bit_depth_template.c"
...
...
libavcodec/jrevdct.c
View file @
5d3d39c7
...
@@ -63,7 +63,7 @@
...
@@ -63,7 +63,7 @@
*/
*/
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "d
sputil
.h"
#include "d
ct
.h"
#define EIGHT_BIT_SAMPLES
#define EIGHT_BIT_SAMPLES
...
...
libavcodec/mpegvideo_enc.c
View file @
5d3d39c7
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
#include "libavutil/pixdesc.h"
#include "libavutil/pixdesc.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "avcodec.h"
#include "dct.h"
#include "dsputil.h"
#include "dsputil.h"
#include "mpegvideo.h"
#include "mpegvideo.h"
#include "h263.h"
#include "h263.h"
...
...
libavcodec/proresdsp.c
View file @
5d3d39c7
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
* 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 "dct.h"
#include "dsputil.h"
#include "dsputil.h"
#include "proresdsp.h"
#include "proresdsp.h"
#include "simple_idct.h"
#include "simple_idct.h"
...
...
libavcodec/x86/dsputilenc_mmx.c
View file @
5d3d39c7
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include "libavutil/cpu.h"
#include "libavutil/cpu.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/dct.h"
#include "libavcodec/dsputil.h"
#include "libavcodec/dsputil.h"
#include "libavcodec/mpegvideo.h"
#include "libavcodec/mpegvideo.h"
#include "libavcodec/mathops.h"
#include "libavcodec/mathops.h"
...
...
libavcodec/x86/fdct.c
View file @
5d3d39c7
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/asm.h"
#include "libavcodec/d
sputil
.h"
#include "libavcodec/d
ct
.h"
#if HAVE_INLINE_ASM
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/mpegvideoenc.c
View file @
5d3d39c7
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
#include "libavutil/x86/asm.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/d
sputil
.h"
#include "libavcodec/d
ct
.h"
#include "libavcodec/mpegvideo.h"
#include "libavcodec/mpegvideo.h"
#include "dsputil_mmx.h"
#include "dsputil_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