1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

h264: rename h264.[ch] to h264dec.[ch]

This is more consistent with the naming of other decoders.
This commit is contained in:
Anton Khirnov 2016-05-18 09:02:39 +02:00
parent f651c6a259
commit 9df889a5f1
32 changed files with 34 additions and 34 deletions

View File

@ -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) += h264dec.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 \

View File

@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
#include "mpegutils.h"

View File

@ -35,7 +35,7 @@
#include "cabac_functions.h"
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
#include "h264_mvpred.h"
#include "mpegutils.h"

View File

@ -29,7 +29,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264_mvpred.h"
#include "h264data.h"
#include "golomb.h"

View File

@ -27,7 +27,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "mpegutils.h"
#include "rectangle.h"
#include "thread.h"

View File

@ -29,7 +29,7 @@
#include "libavutil/intreadwrite.h"
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "mathops.h"
#include "mpegutils.h"
#include "rectangle.h"

View File

@ -31,7 +31,7 @@
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "qpeldsp.h"
#include "thread.h"

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264dec.h"
#undef MCFUNC

View File

@ -30,7 +30,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "mpegutils.h"
#include <assert.h>

View File

@ -19,7 +19,7 @@
#include "bytestream.h"
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264dec.h"
#include "h264_parse.h"
int ff_h264_pred_weight_table(GetBitContext *gb, const SPS *sps,

View File

@ -36,7 +36,7 @@
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264dec.h"
#include "h264_sei.h"
#include "h264data.h"
#include "internal.h"

View File

@ -33,7 +33,7 @@
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
#include "h264chroma.h"
#include "h264_mvpred.h"

View File

@ -31,7 +31,7 @@
#include "internal.h"
#include "mathops.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
#include "golomb.h"

View File

@ -29,7 +29,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "golomb.h"
#include "mpegutils.h"

View File

@ -28,7 +28,7 @@
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264dec.h"
#include "h264_sei.h"
#include "internal.h"

View File

@ -35,7 +35,7 @@
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
#include "h264chroma.h"
#include "h264_mvpred.h"

View File

@ -31,7 +31,7 @@
#include "libavutil/avutil.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
const uint8_t ff_h264_golomb_to_pict_type[5] = {

View File

@ -21,7 +21,7 @@
#include <stdint.h>
#include "h264.h"
#include "h264dec.h"
extern const uint8_t ff_h264_golomb_to_pict_type[5];
extern const uint8_t ff_h264_golomb_to_intra4x4_cbp[48];

View File

@ -36,7 +36,7 @@
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h2645_parse.h"
#include "h264data.h"
#include "h264chroma.h"

View File

@ -25,8 +25,8 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#ifndef AVCODEC_H264_H
#define AVCODEC_H264_H
#ifndef AVCODEC_H264DEC_H
#define AVCODEC_H264DEC_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_H264DEC_H */

View File

@ -27,7 +27,7 @@
#include "bit_depth_template.c"
#include "libavutil/common.h"
#include "h264.h"
#include "h264dec.h"
#include "h264idct.h"
void FUNCC(ff_h264_idct_add)(uint8_t *_dst, int16_t *_block, int stride)

View File

@ -41,7 +41,7 @@
#include "libavutil/opt.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "internal.h"
#ifdef OMX_SKIP64BIT

View File

@ -31,7 +31,7 @@
#include "libavutil/ppc/types_altivec.h"
#include "libavutil/ppc/util_altivec.h"
#include "libavcodec/h264.h"
#include "libavcodec/h264dec.h"
#include "libavcodec/h264dsp.h"
#if HAVE_ALTIVEC && HAVE_BIGENDIAN

View File

@ -30,7 +30,7 @@
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "h264dec.h"
#include "qsv.h"
#include "qsv_internal.h"
#include "qsvenc.h"

View File

@ -46,7 +46,7 @@
#include "internal.h"
#include "avcodec.h"
#include "mpegutils.h"
#include "h264.h"
#include "h264dec.h"
#include "h264data.h"
#include "golomb.h"
#include "hpeldsp.h"

View File

@ -21,7 +21,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264dec.h"
#include "mpegvideo.h"
#include "vaapi_internal.h"

View File

@ -25,7 +25,7 @@
#include "libavutil/pixfmt.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h264_sei.h"
#include "internal.h"
#include "vaapi_encode.h"

View File

@ -21,7 +21,7 @@
*/
#include "vaapi_internal.h"
#include "h264.h"
#include "h264dec.h"
#include "mpegutils.h"
/**

View File

@ -25,7 +25,7 @@
#include <CoreFoundation/CFString.h>
#include "libavutil/avutil.h"
#include "h264.h"
#include "h264dec.h"
#include "internal.h"
#include "vda.h"
#include "vda_internal.h"

View File

@ -25,7 +25,7 @@
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "h264dec.h"
#include "vc1.h"
#include "vdpau.h"
#include "vdpau_internal.h"

View File

@ -25,7 +25,7 @@
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "h264dec.h"
#include "mpegutils.h"
#include "vdpau.h"
#include "vdpau_internal.h"

View File

@ -23,7 +23,7 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/h264.h"
#include "libavcodec/h264dec.h"
#include "libavcodec/h264qpel.h"
#include "libavcodec/pixels.h"
#include "fpel.h"