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
9df889a5
Commit
9df889a5
authored
May 18, 2016
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: rename h264.[ch] to h264dec.[ch]
This is more consistent with the naming of other decoders.
parent
f651c6a2
Hide whitespace changes
Inline
Side-by-side
Showing
32 changed files
with
34 additions
and
34 deletions
+34
-34
Makefile
libavcodec/Makefile
+1
-1
dxva2_h264.c
libavcodec/dxva2_h264.c
+1
-1
h264_cabac.c
libavcodec/h264_cabac.c
+1
-1
h264_cavlc.c
libavcodec/h264_cavlc.c
+1
-1
h264_direct.c
libavcodec/h264_direct.c
+1
-1
h264_loopfilter.c
libavcodec/h264_loopfilter.c
+1
-1
h264_mb.c
libavcodec/h264_mb.c
+1
-1
h264_mc_template.c
libavcodec/h264_mc_template.c
+1
-1
h264_mvpred.h
libavcodec/h264_mvpred.h
+1
-1
h264_parse.c
libavcodec/h264_parse.c
+1
-1
h264_parser.c
libavcodec/h264_parser.c
+1
-1
h264_picture.c
libavcodec/h264_picture.c
+1
-1
h264_ps.c
libavcodec/h264_ps.c
+1
-1
h264_refs.c
libavcodec/h264_refs.c
+1
-1
h264_sei.c
libavcodec/h264_sei.c
+1
-1
h264_slice.c
libavcodec/h264_slice.c
+1
-1
h264data.c
libavcodec/h264data.c
+1
-1
h264data.h
libavcodec/h264data.h
+1
-1
h264dec.c
libavcodec/h264dec.c
+1
-1
h264dec.h
libavcodec/h264dec.h
+3
-3
h264idct_template.c
libavcodec/h264idct_template.c
+1
-1
omx.c
libavcodec/omx.c
+1
-1
h264dsp.c
libavcodec/ppc/h264dsp.c
+1
-1
qsvenc_h264.c
libavcodec/qsvenc_h264.c
+1
-1
svq3.c
libavcodec/svq3.c
+1
-1
vaapi.c
libavcodec/vaapi.c
+1
-1
vaapi_encode_h264.c
libavcodec/vaapi_encode_h264.c
+1
-1
vaapi_h264.c
libavcodec/vaapi_h264.c
+1
-1
vda_h264.c
libavcodec/vda_h264.c
+1
-1
vdpau.c
libavcodec/vdpau.c
+1
-1
vdpau_h264.c
libavcodec/vdpau_h264.c
+1
-1
h264_qpel.c
libavcodec/x86/h264_qpel.c
+1
-1
No files found.
libavcodec/Makefile
View file @
9df889a5
...
...
@@ -249,7 +249,7 @@ OBJS-$(CONFIG_H263_DECODER) += h263dec.o h263.o ituh263dec.o \
intelh263dec.o
h263data.o
OBJS-$(CONFIG_H263_ENCODER)
+=
mpeg4videoenc.o
mpeg4video.o
\
h263.o
ituh263enc.o
flvenc.o
h263data.o
OBJS-$(CONFIG_H264_DECODER)
+=
h264.o
h264_cabac.o
h264_cavlc.o
\
OBJS-$(CONFIG_H264_DECODER)
+=
h264
dec
.o
h264_cabac.o
h264_cavlc.o
\
h264_direct.o
h264_loopfilter.o
\
h264_mb.o
h264_picture.o
h264_ps.o
\
h264_refs.o
h264_sei.o
\
...
...
libavcodec/dxva2_h264.c
View file @
9df889a5
...
...
@@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
#include "mpegutils.h"
...
...
libavcodec/h264_cabac.c
View file @
9df889a5
...
...
@@ -35,7 +35,7 @@
#include "cabac_functions.h"
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
#include "h264_mvpred.h"
#include "mpegutils.h"
...
...
libavcodec/h264_cavlc.c
View file @
9df889a5
...
...
@@ -29,7 +29,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264_mvpred.h"
#include "h264data.h"
#include "golomb.h"
...
...
libavcodec/h264_direct.c
View file @
9df889a5
...
...
@@ -27,7 +27,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "mpegutils.h"
#include "rectangle.h"
#include "thread.h"
...
...
libavcodec/h264_loopfilter.c
View file @
9df889a5
...
...
@@ -29,7 +29,7 @@
#include "libavutil/intreadwrite.h"
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "mathops.h"
#include "mpegutils.h"
#include "rectangle.h"
...
...
libavcodec/h264_mb.c
View file @
9df889a5
...
...
@@ -31,7 +31,7 @@
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "qpeldsp.h"
#include "thread.h"
...
...
libavcodec/h264_mc_template.c
View file @
9df889a5
...
...
@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264
dec
.h"
#undef MCFUNC
...
...
libavcodec/h264_mvpred.h
View file @
9df889a5
...
...
@@ -30,7 +30,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "mpegutils.h"
#include <assert.h>
...
...
libavcodec/h264_parse.c
View file @
9df889a5
...
...
@@ -19,7 +19,7 @@
#include "bytestream.h"
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264_parse.h"
int
ff_h264_pred_weight_table
(
GetBitContext
*
gb
,
const
SPS
*
sps
,
...
...
libavcodec/h264_parser.c
View file @
9df889a5
...
...
@@ -36,7 +36,7 @@
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264_sei.h"
#include "h264data.h"
#include "internal.h"
...
...
libavcodec/h264_picture.c
View file @
9df889a5
...
...
@@ -33,7 +33,7 @@
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
#include "h264chroma.h"
#include "h264_mvpred.h"
...
...
libavcodec/h264_ps.c
View file @
9df889a5
...
...
@@ -31,7 +31,7 @@
#include "internal.h"
#include "mathops.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
#include "golomb.h"
...
...
libavcodec/h264_refs.c
View file @
9df889a5
...
...
@@ -29,7 +29,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "golomb.h"
#include "mpegutils.h"
...
...
libavcodec/h264_sei.c
View file @
9df889a5
...
...
@@ -28,7 +28,7 @@
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264_sei.h"
#include "internal.h"
...
...
libavcodec/h264_slice.c
View file @
9df889a5
...
...
@@ -35,7 +35,7 @@
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
#include "h264chroma.h"
#include "h264_mvpred.h"
...
...
libavcodec/h264data.c
View file @
9df889a5
...
...
@@ -31,7 +31,7 @@
#include "libavutil/avutil.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
const
uint8_t
ff_h264_golomb_to_pict_type
[
5
]
=
{
...
...
libavcodec/h264data.h
View file @
9df889a5
...
...
@@ -21,7 +21,7 @@
#include <stdint.h>
#include "h264.h"
#include "h264
dec
.h"
extern
const
uint8_t
ff_h264_golomb_to_pict_type
[
5
];
extern
const
uint8_t
ff_h264_golomb_to_intra4x4_cbp
[
48
];
...
...
libavcodec/h264.c
→
libavcodec/h264
dec
.c
View file @
9df889a5
...
...
@@ -36,7 +36,7 @@
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h2645_parse.h"
#include "h264data.h"
#include "h264chroma.h"
...
...
libavcodec/h264.h
→
libavcodec/h264
dec
.h
View file @
9df889a5
...
...
@@ -25,8 +25,8 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#ifndef AVCODEC_H264_H
#define AVCODEC_H264_H
#ifndef AVCODEC_H264
DEC
_H
#define AVCODEC_H264
DEC
_H
#include "libavutil/buffer.h"
#include "libavutil/intreadwrite.h"
...
...
@@ -935,4 +935,4 @@ void ff_h264_flush_change(H264Context *h);
void
ff_h264_free_tables
(
H264Context
*
h
);
#endif
/* AVCODEC_H264_H */
#endif
/* AVCODEC_H264
DEC
_H */
libavcodec/h264idct_template.c
View file @
9df889a5
...
...
@@ -27,7 +27,7 @@
#include "bit_depth_template.c"
#include "libavutil/common.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264idct.h"
void
FUNCC
(
ff_h264_idct_add
)(
uint8_t
*
_dst
,
int16_t
*
_block
,
int
stride
)
...
...
libavcodec/omx.c
View file @
9df889a5
...
...
@@ -41,7 +41,7 @@
#include "libavutil/opt.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "internal.h"
#ifdef OMX_SKIP64BIT
...
...
libavcodec/ppc/h264dsp.c
View file @
9df889a5
...
...
@@ -31,7 +31,7 @@
#include "libavutil/ppc/types_altivec.h"
#include "libavutil/ppc/util_altivec.h"
#include "libavcodec/h264.h"
#include "libavcodec/h264
dec
.h"
#include "libavcodec/h264dsp.h"
#if HAVE_ALTIVEC && HAVE_BIGENDIAN
...
...
libavcodec/qsvenc_h264.c
View file @
9df889a5
...
...
@@ -30,7 +30,7 @@
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "h264
dec
.h"
#include "qsv.h"
#include "qsv_internal.h"
#include "qsvenc.h"
...
...
libavcodec/svq3.c
View file @
9df889a5
...
...
@@ -46,7 +46,7 @@
#include "internal.h"
#include "avcodec.h"
#include "mpegutils.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264data.h"
#include "golomb.h"
#include "hpeldsp.h"
...
...
libavcodec/vaapi.c
View file @
9df889a5
...
...
@@ -21,7 +21,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264
dec
.h"
#include "mpegvideo.h"
#include "vaapi_internal.h"
...
...
libavcodec/vaapi_encode_h264.c
View file @
9df889a5
...
...
@@ -25,7 +25,7 @@
#include "libavutil/pixfmt.h"
#include "avcodec.h"
#include "h264.h"
#include "h264
dec
.h"
#include "h264_sei.h"
#include "internal.h"
#include "vaapi_encode.h"
...
...
libavcodec/vaapi_h264.c
View file @
9df889a5
...
...
@@ -21,7 +21,7 @@
*/
#include "vaapi_internal.h"
#include "h264.h"
#include "h264
dec
.h"
#include "mpegutils.h"
/**
...
...
libavcodec/vda_h264.c
View file @
9df889a5
...
...
@@ -25,7 +25,7 @@
#include <CoreFoundation/CFString.h>
#include "libavutil/avutil.h"
#include "h264.h"
#include "h264
dec
.h"
#include "internal.h"
#include "vda.h"
#include "vda_internal.h"
...
...
libavcodec/vdpau.c
View file @
9df889a5
...
...
@@ -25,7 +25,7 @@
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "h264
dec
.h"
#include "vc1.h"
#include "vdpau.h"
#include "vdpau_internal.h"
...
...
libavcodec/vdpau_h264.c
View file @
9df889a5
...
...
@@ -25,7 +25,7 @@
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "h264
dec
.h"
#include "mpegutils.h"
#include "vdpau.h"
#include "vdpau_internal.h"
...
...
libavcodec/x86/h264_qpel.c
View file @
9df889a5
...
...
@@ -23,7 +23,7 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/h264.h"
#include "libavcodec/h264
dec
.h"
#include "libavcodec/h264qpel.h"
#include "libavcodec/pixels.h"
#include "fpel.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