mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2025-01-26 22:35:04 +00:00
Merge commit '9df889a5f116c1ee78c2f239e0ba599c492431aa'
* commit '9df889a5f116c1ee78c2f239e0ba599c492431aa': h264: rename h264.[ch] to h264dec.[ch] Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
15b26e88cb
@ -309,7 +309,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 \
|
||||
|
@ -83,7 +83,7 @@
|
||||
#include <libcrystalhd/libcrystalhd_if.h>
|
||||
|
||||
#include "avcodec.h"
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "internal.h"
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "libavutil/intreadwrite.h"
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "h264data.h"
|
||||
#include "mpegutils.h"
|
||||
|
||||
|
@ -37,7 +37,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"
|
||||
|
@ -30,7 +30,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 "libavutil/avassert.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,
|
||||
|
@ -38,7 +38,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"
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "libavutil/avassert.h"
|
||||
#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];
|
||||
|
@ -39,7 +39,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"
|
||||
@ -1005,4 +1005,4 @@ void ff_h264_free_tables(H264Context *h);
|
||||
|
||||
void ff_h264_set_erpic(ERPicture *dst, H264Picture *src);
|
||||
|
||||
#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)
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "libavutil/atomic.h"
|
||||
|
||||
#include "avcodec.h"
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "internal.h"
|
||||
#include "mediacodecdec.h"
|
||||
#include "mediacodec_wrapper.h"
|
||||
|
@ -21,7 +21,7 @@
|
||||
#ifndef AVCODEC_MIPS_H264CHROMA_MIPS_H
|
||||
#define AVCODEC_MIPS_H264CHROMA_MIPS_H
|
||||
|
||||
#include "libavcodec/h264.h"
|
||||
#include "libavcodec/h264dec.h"
|
||||
void ff_put_h264_chroma_mc8_msa(uint8_t *dst, uint8_t *src, int stride,
|
||||
int height, int x, int y);
|
||||
void ff_put_h264_chroma_mc4_msa(uint8_t *dst, uint8_t *src, int stride,
|
||||
|
@ -22,7 +22,7 @@
|
||||
#ifndef AVCODEC_MIPS_H264DSP_MIPS_H
|
||||
#define AVCODEC_MIPS_H264DSP_MIPS_H
|
||||
|
||||
#include "libavcodec/h264.h"
|
||||
#include "libavcodec/h264dec.h"
|
||||
#include "constants.h"
|
||||
|
||||
void ff_h264_h_lpf_luma_inter_msa(uint8_t *src, 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
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include "vda.h"
|
||||
#include "libavutil/avutil.h"
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
|
||||
struct vda_buffer {
|
||||
CVPixelBufferRef cv_buffer;
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <CoreFoundation/CoreFoundation.h>
|
||||
|
||||
#include "vda.h"
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "avcodec.h"
|
||||
|
||||
#ifndef kCFCoreFoundationVersionNumber10_7
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#include "avcodec.h"
|
||||
#include "internal.h"
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "vc1.h"
|
||||
#include "vdpau.h"
|
||||
#include "vdpau_compat.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "mpeg4video.h"
|
||||
|
||||
void ff_vdpau_add_data_chunk(uint8_t *data, const uint8_t *buf,
|
||||
|
@ -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"
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "vda_vt_internal.h"
|
||||
#include "libavutil/avutil.h"
|
||||
#include "bytestream.h"
|
||||
#include "h264.h"
|
||||
#include "h264dec.h"
|
||||
#include "mpegvideo.h"
|
||||
|
||||
#ifndef kVTVideoDecoderSpecification_RequireHardwareAcceleratedVideoDecoder
|
||||
|
@ -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"
|
||||
|
@ -48,7 +48,7 @@
|
||||
#include "libavutil/time_internal.h"
|
||||
#include "libavcodec/bytestream.h"
|
||||
#include "libavcodec/dnxhddata.h"
|
||||
#include "libavcodec/h264.h"
|
||||
#include "libavcodec/h264dec.h"
|
||||
#include "libavcodec/internal.h"
|
||||
#include "audiointerleave.h"
|
||||
#include "avformat.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user