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
31b69928
Commit
31b69928
authored
Jul 12, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: rename eac3dec_data.c/h to eac3_data.c/h since the tables will also
be used in the E-AC-3 encoder.
parent
29b42c66
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
Makefile
libavcodec/Makefile
+1
-1
eac3_data.c
libavcodec/eac3_data.c
+2
-2
eac3_data.h
libavcodec/eac3_data.h
+4
-4
eac3dec.c
libavcodec/eac3dec.c
+1
-1
No files found.
libavcodec/Makefile
View file @
31b69928
...
...
@@ -122,7 +122,7 @@ OBJS-$(CONFIG_DVDSUB_ENCODER) += dvdsubenc.o
OBJS-$(CONFIG_DVVIDEO_DECODER)
+=
dv.o
dvdata.o
OBJS-$(CONFIG_DVVIDEO_ENCODER)
+=
dv.o
dvdata.o
OBJS-$(CONFIG_DXA_DECODER)
+=
dxa.o
OBJS-$(CONFIG_EAC3_DECODER)
+=
eac3dec.o
eac3
dec
_data.o
OBJS-$(CONFIG_EAC3_DECODER)
+=
eac3dec.o
eac3_data.o
OBJS-$(CONFIG_EAC3_ENCODER)
+=
eac3enc.o
ac3enc.o
ac3enc_float.o
\
ac3tab.o
ac3.o
kbdwin.o
OBJS-$(CONFIG_EACMV_DECODER)
+=
eacmv.o
...
...
libavcodec/eac3
dec
_data.c
→
libavcodec/eac3_data.c
View file @
31b69928
/*
* E-AC-3
decoder
tables
* E-AC-3 tables
* Copyright (c) 2007 Bartlomiej Wolowiec <bartek.wolowiec@gmail.com>
*
* This file is part of Libav.
...
...
@@ -24,7 +24,7 @@
* Tables taken directly from the E-AC-3 spec.
*/
#include "eac3
dec
_data.h"
#include "eac3_data.h"
#include "ac3.h"
const
uint8_t
ff_eac3_bits_vs_hebap
[
20
]
=
{
...
...
libavcodec/eac3
dec
_data.h
→
libavcodec/eac3_data.h
View file @
31b69928
/*
* E-AC-3
decoder
tables
* E-AC-3 tables
* Copyright (c) 2007 Bartlomiej Wolowiec <bartek.wolowiec@gmail.com>
*
* This file is part of Libav.
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_EAC3
DEC
_DATA_H
#define AVCODEC_EAC3
DEC
_DATA_H
#ifndef AVCODEC_EAC3_DATA_H
#define AVCODEC_EAC3_DATA_H
#include <stdint.h>
...
...
@@ -33,4 +33,4 @@ extern const int16_t (* const ff_eac3_mantissa_vq[8])[6];
extern
const
uint8_t
ff_eac3_frm_expstr
[
32
][
6
];
extern
const
float
ff_eac3_spx_atten_tab
[
32
][
3
];
#endif
/* AVCODEC_EAC3
DEC
_DATA_H */
#endif
/* AVCODEC_EAC3_DATA_H */
libavcodec/eac3dec.c
View file @
31b69928
...
...
@@ -51,7 +51,7 @@
#include "ac3_parser.h"
#include "ac3dec.h"
#include "ac3dec_data.h"
#include "eac3
dec
_data.h"
#include "eac3_data.h"
/** gain adaptive quantization mode */
typedef
enum
{
...
...
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