Commit 9df889a5 authored by Anton Khirnov's avatar Anton Khirnov

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

This is more consistent with the naming of other decoders.
parent f651c6a2
......@@ -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 \
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "h264.h"
#include "h264dec.h"
#undef MCFUNC
......
......@@ -30,7 +30,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "mpegutils.h"
#include <assert.h>
......
......@@ -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,
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -29,7 +29,7 @@
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "golomb.h"
#include "mpegutils.h"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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] = {
......
......@@ -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];
......
......@@ -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"
......
......@@ -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 */
......@@ -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)
......
......@@ -41,7 +41,7 @@
#include "libavutil/opt.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "internal.h"
#ifdef OMX_SKIP64BIT
......
......@@ -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
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -21,7 +21,7 @@
*/
#include "vaapi_internal.h"
#include "h264.h"
#include "h264dec.h"
#include "mpegutils.h"
/**
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment