嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
MPEG4格式编解码C源代码
MPEG4格式编解码C源代码
MPEG4格式编码源代码 (C源代码系列)
├── decoder
│ ├── mpeg4decsrc
│ │ └── DECORE
│ │ ├── BUILD
│ │ │ ├── CVS
│ │ │ │ ├── Entries
│ │ │ │ ├── Repository
│ │ │ │ └── Root
│ │ │ └── WIN32
│ │ │ ├── CVS
│ │ │ │ ├── Entries
│ │ │ │ ├── Repository
│ │ │ │ └── Root
│ │ │ ├── DECORE.DSP
│ │ │ ├── DECORE.DSW
│ │ │ ├── TEST
│ │ │ │ ├── CVS
│ │ │ │ │ ├── Entries
│ │ │ │ │ ├── Repository
│ │ │ │ │ └── Root
│ │ │ │ ├── test_basic_prediction.dsp
│ │ │ │ └── test_basic_prediction.dsw
│ │ │ └── console.dsp
│ │ ├── CVS
│ │ │ ├── Entries
│ │ │ ├── Repository
│ │ │ └── Root
│ │ ├── SRC
│ │ │ ├── ATT_MMX
│ │ │ │ ├── CVS
│ │ │ │ │ ├── Entries
│ │ │ │ │ ├── Repository
│ │ │ │ │ └── Root
│ │ │ │ └── basic_prediction_mmx.c
│ │ │ ├── CVS
│ │ │ │ ├── Entries
│ │ │ │ ├── Repository
│ │ │ │ └── Root
│ │ │ ├── DEBUG.C
│ │ │ ├── DEBUG.H
│ │ │ ├── DECORE.C
│ │ │ ├── DECORE.H
│ │ │ ├── GEN_DRAW.C
│ │ │ ├── GEN_DRAW.H
│ │ │ ├── GETBITS.C
│ │ │ ├── GETBITS.H
│ │ │ ├── GLOBAL.H
│ │ │ ├── IDCT.C
│ │ │ ├── IDCT.H
│ │ │ ├── MP4_VARS.C
│ │ │ ├── MP4_VARS.H
│ │ │ ├── MP4_VLD.C
│ │ │ ├── MP4_VLD.H
│ │ │ ├── PORTAB.H
│ │ │ ├── STORE.C
│ │ │ ├── STORE.H
│ │ │ ├── TIMER.H
│ │ │ ├── YUV2RGB.H
│ │ │ ├── Yuv2rgb.c
│ │ │ ├── basic_prediction.c
│ │ │ ├── basic_prediction.h
│ │ │ ├── clearblock.c
│ │ │ ├── clearblock.h
│ │ │ ├── gen_usetime.c
│ │ │ ├── gen_usetime.h
│ │ │ ├── intel_mmx
│ │ │ │ ├── CVS
│ │ │ │ │ ├── Entries
│ │ │ │ │ ├── Repository
│ │ │ │ │ └── Root
│ │ │ │ ├── IDCT_MMX.C
│ │ │ │ ├── basic_prediction_mmx.c
│ │ │ │ ├── clearblock_mmx.c
│ │ │ │ ├── postprocess
│ │ │ │ │ ├── CVS
│ │ │ │ │ │ ├── Entries
│ │ │ │ │ │ ├── Repository
│ │ │ │ │ │ └── Root
│ │ │ │ │ ├── DO_EMMS.C
│ │ │ │ │ ├── deblock_horiz.c
│ │ │ │ │ ├── deblock_horiz_DC_on.c
│ │ │ │ │ ├── deblock_horiz_default_filter.c
│ │ │ │ │ ├── deblock_horiz_lpf9.c
│ │ │ │ │ ├── deblock_horiz_useDC.c
│ │ │ │ │ ├── deblock_vert.c
│ │ │ │ │ ├── deblock_vert_DC_on.c
│ │ │ │ │ ├── deblock_vert_choose_p1p2.c
│ │ │ │ │ ├── deblock_vert_copy_and_unpack.c
│ │ │ │ │ ├── deblock_vert_default_filter.c
│ │ │ │ │ ├── deblock_vert_lpf9.c
│ │ │ │ │ ├── deblock_vert_useDC.c
│ │ │ │ │ ├── fast_copy.c
│ │ │ │ │ ├── postprocess.c
│ │ │ │ │ ├── postprocess.h
│ │ │ │ │ └── postprocess_mmx.h
│ │ │ │ ├── transferIDCT_mmx.c
│ │ │ │ └── yuv2rgb_mmx.c
│ │ │ ├── mp4_block.c
│ │ │ ├── mp4_block.h
│ │ │ ├── mp4_decoder.c
│ │ │ ├── mp4_decoder.h
│ │ │ ├── mp4_header.c
│ │ │ ├── mp4_header.h
│ │ │ ├── mp4_iquant.c
│ │ │ ├── mp4_iquant.h
│ │ │ ├── mp4_mblock.c
│ │ │ ├── mp4_mblock.h
│ │ │ ├── mp4_picture.c
│ │ │ ├── mp4_predict.c
│ │ │ ├── mp4_predict.h
│ │ │ ├── mp4_recon.c
│ │ │ ├── mp4_tables.c
│ │ │ ├── postprocess.c
│ │ │ ├── postprocess.h
│ │ │ ├── transferIDCT.c
│ │ │ └── transferIDCT.h
│ │ └── TEST
│ │ ├── CVS
│ │ │ ├── Entries
│ │ │ ├── Repository
│ │ │ └── Root
│ │ └── test_basic_prediction.c
│ └── 说明.txt
└── encoder
├── MPEG4编码库源代码
│ ├── @Readme.txt
│ └── mpeg4encsrc
│ └── encore
│ ├── Acknowledgement.txt
│ ├── CVS
│ │ ├── Entries
│ │ ├── Repository
│ │ └── Root
│ ├── build
│ │ ├── CVS
│ │ │ ├── Entries
│ │ │ ├── Repository
│ │ │ └── Root
│ │ └── win32
│ │ ├── CVS
│ │ │ ├── Entries
│ │ │ ├── Repository
│ │ │ └── Root
│ │ ├── encore.dsp
│ │ └── encore.dsw
│ └── src
│ ├── CVS
│ │ ├── Entries
│ │ ├── Repository
│ │ └── Root
│ ├── bitstream.c
│ ├── bitstream.h
│ ├── encore.c
│ ├── encore.h
│ ├── intel_mmx
│ │ ├── CVS
│ │ │ ├── Entries
│ │ │ ├── Repository
│ │ │ └── Root
│ │ ├── text_fdct_mmx.c
│ │ └── text_idct_mmx.c
│ ├── max_level.h
│ ├── mom_access.c
│ ├── mom_access.h
│ ├── mom_structs.h
│ ├── mom_util.c
│ ├── mom_util.h
│ ├── momusys.h
│ ├── mot_code.c
│ ├── mot_code.h
│ ├── mot_est_comp.c
│ ├── mot_est_comp.h
│ ├── mot_est_mb.c
│ ├── mot_est_mb.h
│ ├── mot_util.c
│ ├── mot_util.h
│ ├── non_unix.h
│ ├── putvlc.c
│ ├── putvlc.h
│ ├── rate_ctl.c
│ ├── rate_ctl.h
│ ├── text_bits.c
│ ├── text_bits.h
│ ├── text_code.c
│ ├── text_code.h
│ ├── text_code_mb.c
│ ├── text_code_mb.h
│ ├── text_dct.c
│ ├── text_dct.h
│ ├── text_defs.h
│ ├── vlc.h
│ ├── vm_common_defs.h
│ ├── vm_enc_defs.h
│ ├── vop_code.c
│ ├── vop_code.h
│ └── zigzag.h
└── 说明.txt
33 directories, 164 files