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
23944d29
Commit
23944d29
authored
Mar 29, 2015
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indeo: Give Indeo4/5 shared code a more consistent name
parent
7d3183d3
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
Makefile
libavcodec/Makefile
+2
-2
indeo4.c
libavcodec/indeo4.c
+1
-1
indeo4data.h
libavcodec/indeo4data.h
+1
-2
indeo5.c
libavcodec/indeo5.c
+1
-1
ivi.c
libavcodec/ivi.c
+1
-1
ivi.h
libavcodec/ivi.h
+3
-3
ivi_dsp.c
libavcodec/ivi_dsp.c
+1
-1
ivi_dsp.h
libavcodec/ivi_dsp.h
+3
-2
No files found.
libavcodec/Makefile
View file @
23944d29
...
...
@@ -240,8 +240,8 @@ OBJS-$(CONFIG_IFF_ILBM_DECODER) += iff.o
OBJS-$(CONFIG_IMC_DECODER)
+=
imc.o
OBJS-$(CONFIG_INDEO2_DECODER)
+=
indeo2.o
OBJS-$(CONFIG_INDEO3_DECODER)
+=
indeo3.o
OBJS-$(CONFIG_INDEO4_DECODER)
+=
indeo4.o
ivi
_common
.o
ivi_dsp.o
OBJS-$(CONFIG_INDEO5_DECODER)
+=
indeo5.o
ivi
_common
.o
ivi_dsp.o
OBJS-$(CONFIG_INDEO4_DECODER)
+=
indeo4.o
ivi.o
ivi_dsp.o
OBJS-$(CONFIG_INDEO5_DECODER)
+=
indeo5.o
ivi.o
ivi_dsp.o
OBJS-$(CONFIG_INTERPLAY_DPCM_DECODER)
+=
dpcm.o
OBJS-$(CONFIG_INTERPLAY_VIDEO_DECODER)
+=
interplayvideo.o
OBJS-$(CONFIG_JPEG2000_DECODER)
+=
jpeg2000dec.o
jpeg2000.o
jpeg2000dsp.o
\
...
...
libavcodec/indeo4.c
View file @
23944d29
...
...
@@ -30,8 +30,8 @@
#define BITSTREAM_READER_LE
#include "avcodec.h"
#include "get_bits.h"
#include "ivi.h"
#include "ivi_dsp.h"
#include "ivi_common.h"
#include "indeo4data.h"
#define IVI4_PIC_SIZE_ESC 7
...
...
libavcodec/indeo4data.h
View file @
23944d29
...
...
@@ -29,8 +29,7 @@
#include <stdint.h>
#include "ivi_common.h"
#include "mathops.h"
#include "ivi.h"
/**
* standard picture dimensions
...
...
libavcodec/indeo5.c
View file @
23944d29
...
...
@@ -30,8 +30,8 @@
#define BITSTREAM_READER_LE
#include "avcodec.h"
#include "get_bits.h"
#include "ivi.h"
#include "ivi_dsp.h"
#include "ivi_common.h"
#include "indeo5data.h"
/**
...
...
libavcodec/ivi
_common
.c
→
libavcodec/ivi.c
View file @
23944d29
...
...
@@ -35,7 +35,7 @@
#include "get_bits.h"
#include "internal.h"
#include "mathops.h"
#include "ivi
_common
.h"
#include "ivi.h"
#include "ivi_dsp.h"
/**
...
...
libavcodec/ivi
_common
.h
→
libavcodec/ivi.h
View file @
23944d29
...
...
@@ -26,8 +26,8 @@
* Indeo5 decoders.
*/
#ifndef AVCODEC_IVI_
COMMON_
H
#define AVCODEC_IVI_
COMMON_
H
#ifndef AVCODEC_IVI_H
#define AVCODEC_IVI_H
#include "avcodec.h"
#include "get_bits.h"
...
...
@@ -340,4 +340,4 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
AVPacket
*
avpkt
);
int
ff_ivi_decode_close
(
AVCodecContext
*
avctx
);
#endif
/* AVCODEC_IVI_
COMMON_
H */
#endif
/* AVCODEC_IVI_H */
libavcodec/ivi_dsp.c
View file @
23944d29
...
...
@@ -27,7 +27,7 @@
*/
#include "avcodec.h"
#include "ivi
_common
.h"
#include "ivi.h"
#include "ivi_dsp.h"
void
ff_ivi_recompose53
(
const
IVIPlaneDesc
*
plane
,
uint8_t
*
dst
,
...
...
libavcodec/ivi_dsp.h
View file @
23944d29
...
...
@@ -29,8 +29,9 @@
#ifndef AVCODEC_IVI_DSP_H
#define AVCODEC_IVI_DSP_H
#include "avcodec.h"
#include "ivi_common.h"
#include <stdint.h>
#include "ivi.h"
/**
* 5/3 wavelet recomposition filter for Indeo5
...
...
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