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
f9279ee7
Commit
f9279ee7
authored
Dec 22, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsputil: Move ff_zigzag_direct and ff_crop_tab declarations to mathops.h
parent
600b854a
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
21 additions
and
14 deletions
+21
-14
vp3dsp_init.c
libavcodec/bfin/vp3dsp_init.c
+1
-1
bit_depth_template.c
libavcodec/bit_depth_template.c
+1
-0
cavsdsp.c
libavcodec/cavsdsp.c
+2
-0
dsputil.h
libavcodec/dsputil.h
+1
-6
imgconvert.c
libavcodec/imgconvert.c
+1
-1
indeo4data.h
libavcodec/indeo4data.h
+2
-1
mathops.h
libavcodec/mathops.h
+4
-0
mathtables.c
libavcodec/mathtables.c
+3
-1
mss3.c
libavcodec/mss3.c
+1
-1
pgssubdec.c
libavcodec/pgssubdec.c
+1
-1
rv30dsp.c
libavcodec/rv30dsp.c
+1
-0
rv40dsp.c
libavcodec/rv40dsp.c
+1
-0
vp3.c
libavcodec/vp3.c
+1
-1
vp8dsp.c
libavcodec/vp8dsp.c
+1
-1
No files found.
libavcodec/bfin/vp3dsp_init.c
View file @
f9279ee7
...
...
@@ -23,8 +23,8 @@
#include "libavutil/attributes.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/mathops.h"
#include "libavcodec/vp3dsp.h"
#include "libavcodec/dsputil.h"
void
ff_bfin_vp3_idct
(
int16_t
*
block
);
...
...
libavcodec/bit_depth_template.c
View file @
f9279ee7
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "mathops.h"
#include "rnd_avg.h"
#ifndef BIT_DEPTH
...
...
libavcodec/cavsdsp.c
View file @
f9279ee7
...
...
@@ -23,7 +23,9 @@
*/
#include <stdio.h>
#include "dsputil.h"
#include "mathops.h"
#include "cavsdsp.h"
#include "libavutil/common.h"
...
...
libavcodec/dsputil.h
View file @
f9279ee7
...
...
@@ -36,16 +36,11 @@
/* encoding scans */
extern
const
uint8_t
ff_alternate_horizontal_scan
[
64
];
extern
const
uint8_t
ff_alternate_vertical_scan
[
64
];
extern
const
uint8_t
ff_zigzag_direct
[
64
];
extern
const
uint8_t
ff_zigzag248_direct
[
64
];
/* pixel operations */
#define MAX_NEG_CROP 1024
/* temporary */
extern
uint32_t
ff_square_tab
[
512
];
extern
const
uint8_t
ff_crop_tab
[
256
+
2
*
MAX_NEG_CROP
];
/* pixel operations */
void
ff_put_pixels8x8_c
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
);
void
ff_avg_pixels8x8_c
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
);
void
ff_put_pixels16x16_c
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
);
...
...
libavcodec/imgconvert.c
View file @
f9279ee7
...
...
@@ -31,9 +31,9 @@
*/
#include "avcodec.h"
#include "dsputil.h"
#include "imgconvert.h"
#include "internal.h"
#include "mathops.h"
#include "libavutil/colorspace.h"
#include "libavutil/common.h"
#include "libavutil/pixdesc.h"
...
...
libavcodec/indeo4data.h
View file @
f9279ee7
...
...
@@ -28,8 +28,9 @@
#define AVCODEC_INDEO4DATA_H
#include <stdint.h>
#include "dsputil.h"
#include "ivi_common.h"
#include "mathops.h"
/**
* standard picture dimensions
...
...
libavcodec/mathops.h
View file @
f9279ee7
...
...
@@ -27,9 +27,13 @@
#include "libavutil/common.h"
#include "config.h"
#define MAX_NEG_CROP 1024
extern
const
uint32_t
ff_inverse
[
257
];
extern
const
uint8_t
ff_reverse
[
256
];
extern
const
uint8_t
ff_sqrt_tab
[
256
];
extern
const
uint8_t
ff_crop_tab
[
256
+
2
*
MAX_NEG_CROP
];
extern
const
uint8_t
ff_zigzag_direct
[
64
];
#if ARCH_ARM
# include "arm/mathops.h"
...
...
libavcodec/mathtables.c
View file @
f9279ee7
...
...
@@ -18,6 +18,8 @@
#include <stdint.h>
#include "mathops.h"
/* a*inverse[b]>>32 == a/b for all 0<=a<=16909558 && 2<=b<=256
* for a>16909558, is an overestimate by less than 1 part in 1<<24 */
const
uint32_t
ff_inverse
[
257
]
=
{
...
...
@@ -89,7 +91,7 @@ const uint8_t ff_reverse[256] = {
#define times4(x) x, x, x, x
#define times256(x) times4(times4(times4(times4(times4(x)))))
const
uint8_t
ff_crop_tab
[
256
+
2
*
1024
]
=
{
const
uint8_t
ff_crop_tab
[
256
+
2
*
MAX_NEG_CROP
]
=
{
times256
(
0x00
),
0x00
,
0x01
,
0x02
,
0x03
,
0x04
,
0x05
,
0x06
,
0x07
,
0x08
,
0x09
,
0x0A
,
0x0B
,
0x0C
,
0x0D
,
0x0E
,
0x0F
,
0x10
,
0x11
,
0x12
,
0x13
,
0x14
,
0x15
,
0x16
,
0x17
,
0x18
,
0x19
,
0x1A
,
0x1B
,
0x1C
,
0x1D
,
0x1E
,
0x1F
,
...
...
libavcodec/mss3.c
View file @
f9279ee7
...
...
@@ -26,8 +26,8 @@
#include "avcodec.h"
#include "bytestream.h"
#include "dsputil.h"
#include "internal.h"
#include "mathops.h"
#include "mss34dsp.h"
#define HEADER_SIZE 27
...
...
libavcodec/pgssubdec.c
View file @
f9279ee7
...
...
@@ -25,9 +25,9 @@
*/
#include "avcodec.h"
#include "dsputil.h"
#include "bytestream.h"
#include "internal.h"
#include "mathops.h"
#include "libavutil/colorspace.h"
#include "libavutil/imgutils.h"
...
...
libavcodec/rv30dsp.c
View file @
f9279ee7
...
...
@@ -27,6 +27,7 @@
#include "avcodec.h"
#include "h264chroma.h"
#include "h264qpel.h"
#include "mathops.h"
#include "rv34dsp.h"
#define RV30_LOWPASS(OPNAME, OP) \
...
...
libavcodec/rv40dsp.c
View file @
f9279ee7
...
...
@@ -26,6 +26,7 @@
#include "avcodec.h"
#include "h264qpel.h"
#include "mathops.h"
#include "rv34dsp.h"
#include "libavutil/common.h"
...
...
libavcodec/vp3.c
View file @
f9279ee7
...
...
@@ -36,9 +36,9 @@
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "internal.h"
#include "dsputil.h"
#include "get_bits.h"
#include "hpeldsp.h"
#include "mathops.h"
#include "videodsp.h"
#include "vp3data.h"
#include "vp3dsp.h"
...
...
libavcodec/vp8dsp.c
View file @
f9279ee7
...
...
@@ -24,7 +24,7 @@
* VP8 compatible video decoder
*/
#include "
dsputil
.h"
#include "
mathops
.h"
#include "vp8dsp.h"
#include "libavutil/common.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