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
0ac9a875
Commit
0ac9a875
authored
Jul 11, 2007
by
Ivan Kalvachev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert commit 9603
Originally committed as revision 9605 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
58f46f2f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
19 deletions
+0
-19
Makefile
libavcodec/Makefile
+0
-1
avcodec.h
libavcodec/avcodec.h
+0
-1
dsputil.c
libavcodec/dsputil.c
+0
-16
dsputil.h
libavcodec/dsputil.h
+0
-1
No files found.
libavcodec/Makefile
View file @
0ac9a875
...
...
@@ -13,7 +13,6 @@ OBJS= bitstream.o \
jrevdct.o
\
jfdctfst.o
\
jfdctint.o
\
mpegidct.o
\
resample.o
\
resample2.o
\
dsputil.o
\
...
...
libavcodec/avcodec.h
View file @
0ac9a875
...
...
@@ -1278,7 +1278,6 @@ typedef struct AVCodecContext {
#define FF_IDCT_CAVS 15
#define FF_IDCT_SIMPLEARMV5TE 16
#define FF_IDCT_SIMPLEARMV6 17
#define FF_IDCT_MPEG 18
/**
* slice count
...
...
libavcodec/dsputil.c
View file @
0ac9a875
...
...
@@ -3753,17 +3753,6 @@ void ff_float_to_int16_c(int16_t *dst, const float *src, int len){
/* XXX: those functions should be suppressed ASAP when all IDCTs are
converted */
static
void
ff_mpeg_idct_put_c
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
)
{
ff_mpeg_idct_c
(
block
);
put_pixels_clamped_c
(
block
,
dest
,
line_size
);
}
static
void
ff_mpeg_idct_add_c
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
)
{
ff_mpeg_idct_c
(
block
);
add_pixels_clamped_c
(
block
,
dest
,
line_size
);
}
static
void
ff_jref_idct_put
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
)
{
j_rev_dct
(
block
);
...
...
@@ -3902,11 +3891,6 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx)
c
->
idct_add
=
ff_vp3_idct_add_c
;
c
->
idct
=
ff_vp3_idct_c
;
c
->
idct_permutation_type
=
FF_NO_IDCT_PERM
;
}
else
if
(
avctx
->
idct_algo
==
FF_IDCT_MPEG
){
c
->
idct_put
=
ff_mpeg_idct_put_c
;
c
->
idct_add
=
ff_mpeg_idct_add_c
;
c
->
idct
=
ff_mpeg_idct_c
;
c
->
idct_permutation_type
=
FF_NO_IDCT_PERM
;
}
else
{
//accurate/default
c
->
idct_put
=
simple_idct_put
;
c
->
idct_add
=
simple_idct_add
;
...
...
libavcodec/dsputil.h
View file @
0ac9a875
...
...
@@ -47,7 +47,6 @@ void j_rev_dct (DCTELEM *data);
void
j_rev_dct4
(
DCTELEM
*
data
);
void
j_rev_dct2
(
DCTELEM
*
data
);
void
j_rev_dct1
(
DCTELEM
*
data
);
void
ff_mpeg_idct_c
(
DCTELEM
*
data
);
void
ff_fdct_mmx
(
DCTELEM
*
block
);
void
ff_fdct_mmx2
(
DCTELEM
*
block
);
...
...
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