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
aac996cc
Commit
aac996cc
authored
Nov 23, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
g723_1: Rename files to better reflect their purpose
Signed-off-by:
Vittorio Giovara
<
vittorio.giovara@gmail.com
>
parent
b74b88f3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
Makefile
libavcodec/Makefile
+1
-1
g723_1.h
libavcodec/g723_1.h
+3
-3
g723_1dec.c
libavcodec/g723_1dec.c
+1
-1
No files found.
libavcodec/Makefile
View file @
aac996cc
...
...
@@ -225,7 +225,7 @@ OBJS-$(CONFIG_FOURXM_DECODER) += 4xm.o
OBJS-$(CONFIG_FRAPS_DECODER)
+=
fraps.o
OBJS-$(CONFIG_FRWU_DECODER)
+=
frwu.o
OBJS-$(CONFIG_G2M_DECODER)
+=
g2meet.o
elsdec.o
OBJS-$(CONFIG_G723_1_DECODER)
+=
g723_1.o
acelp_vectors.o
\
OBJS-$(CONFIG_G723_1_DECODER)
+=
g723_1
dec
.o
acelp_vectors.o
\
celp_filters.o
OBJS-$(CONFIG_GIF_DECODER)
+=
gifdec.o
lzw.o
OBJS-$(CONFIG_GIF_ENCODER)
+=
gif.o
lzwenc.o
...
...
libavcodec/g723_1
_data
.h
→
libavcodec/g723_1.h
View file @
aac996cc
...
...
@@ -25,8 +25,8 @@
* G.723.1 compatible decoder data tables
*/
#ifndef AVCODEC_G723_1_
DATA_
H
#define AVCODEC_G723_1_
DATA_
H
#ifndef AVCODEC_G723_1_H
#define AVCODEC_G723_1_H
#include <stdint.h>
...
...
@@ -1198,4 +1198,4 @@ static const int cng_filt[4] = { 273, 998, 499, 333 };
static
const
int
cng_bseg
[
3
]
=
{
2048
,
18432
,
231233
};
#endif
/* AVCODEC_G723_1_
DATA_
H */
#endif
/* AVCODEC_G723_1_H */
libavcodec/g723_1.c
→
libavcodec/g723_1
dec
.c
View file @
aac996cc
...
...
@@ -33,7 +33,7 @@
#include "get_bits.h"
#include "acelp_vectors.h"
#include "celp_filters.h"
#include "g723_1
_data
.h"
#include "g723_1.h"
#include "internal.h"
#define CNG_RANDOM_SEED 12345
...
...
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