├── README.md ├── hm-14.0 ├── COPYING ├── HM.xcodeproj │ └── project.pbxproj ├── README-newconfig.txt ├── build │ ├── HM_vc10.sln │ ├── HM_vc8.sln │ ├── HM_vc9.sln │ ├── linux │ │ ├── app │ │ │ ├── TAppDecoder │ │ │ │ └── makefile │ │ │ └── TAppEncoder │ │ │ │ └── makefile │ │ ├── common │ │ │ └── makefile.base │ │ ├── lib │ │ │ ├── TAppCommon │ │ │ │ └── makefile │ │ │ ├── TLibCommon │ │ │ │ └── makefile │ │ │ ├── TLibDecoder │ │ │ │ └── makefile │ │ │ ├── TLibEncoder │ │ │ │ └── makefile │ │ │ └── TLibVideoIO │ │ │ │ └── makefile │ │ ├── makefile │ │ └── utils │ │ │ ├── annexBbytecount │ │ │ └── makefile │ │ │ └── convert_NtoMbit_YCbCr │ │ │ └── makefile │ ├── vc10 │ │ ├── TAppCommon_vc10.vcxproj │ │ ├── TAppCommon_vc10.vcxproj.filters │ │ ├── TAppDecoder_vc10.vcxproj │ │ ├── TAppDecoder_vc10.vcxproj.filters │ │ ├── TAppEncoder_vc10.vcxproj │ │ ├── TAppEncoder_vc10.vcxproj.filters │ │ ├── TLibCommon_vc10.vcxproj │ │ ├── TLibCommon_vc10.vcxproj.filters │ │ ├── TLibDecoder_vc10.vcxproj │ │ ├── TLibDecoder_vc10.vcxproj.filters │ │ ├── TLibEncoder_vc10.vcxproj │ │ ├── TLibEncoder_vc10.vcxproj.filters │ │ ├── TLibVideoIO_vc10.vcxproj │ │ └── TLibVideoIO_vc10.vcxproj.filters │ ├── vc8 │ │ ├── TAppCommon_vc8.vcproj │ │ ├── TAppDecoder_vc8.vcproj │ │ ├── TAppEncoder_vc8.vcproj │ │ ├── TLibCommon_vc8.vcproj │ │ ├── TLibDecoder_vc8.vcproj │ │ ├── TLibEncoder_vc8.vcproj │ │ └── TLibVideoIO_vc8.vcproj │ └── vc9 │ │ ├── TAppCommon_vc9.vcproj │ │ ├── TAppDecoder_vc9.vcproj │ │ ├── TAppEncoder_vc9.vcproj │ │ ├── TLibCommon_vc9.vcproj │ │ ├── TLibDecoder_vc9.vcproj │ │ ├── TLibEncoder_vc9.vcproj │ │ └── TLibVideoIO_vc9.vcproj ├── cfg │ ├── encoder_intra_main.cfg │ ├── encoder_intra_main10.cfg │ ├── encoder_lowdelay_P_main.cfg │ ├── encoder_lowdelay_P_main10.cfg │ ├── encoder_lowdelay_main.cfg │ ├── encoder_lowdelay_main10.cfg │ ├── encoder_randomaccess_main.cfg │ ├── encoder_randomaccess_main10.cfg │ ├── misc │ │ ├── encoder_randomaccess_field_coding.cfg │ │ └── encoder_randomaccess_main_4tids.cfg │ └── per-sequence │ │ ├── BQMall.cfg │ │ ├── BQSquare.cfg │ │ ├── BQTerrace.cfg │ │ ├── BasketballDrill.cfg │ │ ├── BasketballDrillText.cfg │ │ ├── BasketballDrive.cfg │ │ ├── BasketballPass.cfg │ │ ├── BlowingBubbles.cfg │ │ ├── Cactus.cfg │ │ ├── ChinaSpeed.cfg │ │ ├── FourPeople.cfg │ │ ├── Johnny.cfg │ │ ├── Kimono.cfg │ │ ├── KristenAndSara.cfg │ │ ├── NebutaFestival_10bit.cfg │ │ ├── ParkScene.cfg │ │ ├── PartyScene.cfg │ │ ├── PeopleOnStreet.cfg │ │ ├── RaceHorses.cfg │ │ ├── RaceHorsesC.cfg │ │ ├── SlideEditing.cfg │ │ ├── SlideShow.cfg │ │ ├── SteamLocomotiveTrain_10bit.cfg │ │ ├── Traffic.cfg │ │ ├── Vidyo1.cfg │ │ ├── Vidyo3.cfg │ │ └── Vidyo4.cfg ├── compat │ └── msvc │ │ └── stdint.h ├── doc │ ├── Doxyfile │ ├── Makefile │ ├── README_data-structure.ppt │ ├── README_software-manual.txt │ ├── gop-structure-example.pdf │ ├── mainpage.h │ ├── software-manual.pdf │ └── software-manual.tex └── source │ ├── App │ ├── TAppDecoder │ │ ├── TAppDecCfg.cpp │ │ ├── TAppDecCfg.h │ │ ├── TAppDecTop.cpp │ │ ├── TAppDecTop.h │ │ └── decmain.cpp │ ├── TAppEncoder │ │ ├── TAppEncCfg.cpp │ │ ├── TAppEncCfg.h │ │ ├── TAppEncTop.cpp │ │ ├── TAppEncTop.h │ │ └── encmain.cpp │ └── utils │ │ ├── BitrateTargeting │ │ ├── ExtractBitrates.cpp │ │ ├── ExtractBitrates.h │ │ ├── ExtractBitratesMain.cpp │ │ ├── GuessLambdaModifiers.cpp │ │ ├── GuessLambdaModifiers.h │ │ ├── GuessLambdaModifiersMain.cpp │ │ ├── QuickStartGuide.pdf │ │ ├── RuntimeError.h │ │ ├── encode.shl │ │ ├── encodeCommand.sh │ │ ├── makefile │ │ └── targetBitrates.sh │ │ ├── annexBbytecount.cpp │ │ └── convert_NtoMbit_YCbCr.cpp │ └── Lib │ ├── TAppCommon │ ├── program_options_lite.cpp │ └── program_options_lite.h │ ├── TLibCommon │ ├── AccessUnit.h │ ├── CommonDef.h │ ├── ContextModel.cpp │ ├── ContextModel.h │ ├── ContextModel3DBuffer.cpp │ ├── ContextModel3DBuffer.h │ ├── ContextTables.h │ ├── NAL.h │ ├── SEI.cpp │ ├── SEI.h │ ├── TComBitCounter.h │ ├── TComBitStream.cpp │ ├── TComBitStream.h │ ├── TComCABACTables.cpp │ ├── TComCABACTables.h │ ├── TComDataCU.cpp │ ├── TComDataCU.h │ ├── TComInterpolationFilter.cpp │ ├── TComInterpolationFilter.h │ ├── TComList.h │ ├── TComLoopFilter.cpp │ ├── TComLoopFilter.h │ ├── TComMotionInfo.cpp │ ├── TComMotionInfo.h │ ├── TComMv.h │ ├── TComPattern.cpp │ ├── TComPattern.h │ ├── TComPic.cpp │ ├── TComPic.h │ ├── TComPicSym.cpp │ ├── TComPicSym.h │ ├── TComPicYuv.cpp │ ├── TComPicYuv.h │ ├── TComPicYuvMD5.cpp │ ├── TComPrediction.cpp │ ├── TComPrediction.h │ ├── TComRdCost.cpp │ ├── TComRdCost.h │ ├── TComRdCostWeightPrediction.cpp │ ├── TComRdCostWeightPrediction.h │ ├── TComRom.cpp │ ├── TComRom.h │ ├── TComSampleAdaptiveOffset.cpp │ ├── TComSampleAdaptiveOffset.h │ ├── TComSlice.cpp │ ├── TComSlice.h │ ├── TComTrQuant.cpp │ ├── TComTrQuant.h │ ├── TComWeightPrediction.cpp │ ├── TComWeightPrediction.h │ ├── TComYuv.cpp │ ├── TComYuv.h │ └── TypeDef.h │ ├── TLibDecoder │ ├── AnnexBread.cpp │ ├── AnnexBread.h │ ├── NALread.cpp │ ├── NALread.h │ ├── SEIread.cpp │ ├── SEIread.h │ ├── SyntaxElementParser.cpp │ ├── SyntaxElementParser.h │ ├── TDecBinCoder.h │ ├── TDecBinCoderCABAC.cpp │ ├── TDecBinCoderCABAC.h │ ├── TDecCAVLC.cpp │ ├── TDecCAVLC.h │ ├── TDecCu.cpp │ ├── TDecCu.h │ ├── TDecEntropy.cpp │ ├── TDecEntropy.h │ ├── TDecGop.cpp │ ├── TDecGop.h │ ├── TDecSbac.cpp │ ├── TDecSbac.h │ ├── TDecSlice.cpp │ ├── TDecSlice.h │ ├── TDecTop.cpp │ └── TDecTop.h │ ├── TLibEncoder │ ├── AnnexBwrite.h │ ├── NALwrite.cpp │ ├── NALwrite.h │ ├── SEIwrite.cpp │ ├── SEIwrite.h │ ├── SyntaxElementWriter.cpp │ ├── SyntaxElementWriter.h │ ├── TEncAnalyze.cpp │ ├── TEncAnalyze.h │ ├── TEncBinCoder.h │ ├── TEncBinCoderCABAC.cpp │ ├── TEncBinCoderCABAC.h │ ├── TEncBinCoderCABACCounter.cpp │ ├── TEncBinCoderCABACCounter.h │ ├── TEncCavlc.cpp │ ├── TEncCavlc.h │ ├── TEncCfg.h │ ├── TEncCu.cpp │ ├── TEncCu.h │ ├── TEncEntropy.cpp │ ├── TEncEntropy.h │ ├── TEncGOP.cpp │ ├── TEncGOP.h │ ├── TEncPic.cpp │ ├── TEncPic.h │ ├── TEncPreanalyzer.cpp │ ├── TEncPreanalyzer.h │ ├── TEncRateCtrl.cpp │ ├── TEncRateCtrl.h │ ├── TEncSampleAdaptiveOffset.cpp │ ├── TEncSampleAdaptiveOffset.h │ ├── TEncSbac.cpp │ ├── TEncSbac.h │ ├── TEncSearch.cpp │ ├── TEncSearch.h │ ├── TEncSlice.cpp │ ├── TEncSlice.h │ ├── TEncTop.cpp │ ├── TEncTop.h │ ├── WeightPredAnalysis.cpp │ └── WeightPredAnalysis.h │ ├── TLibVideoIO │ ├── TVideoIOYuv.cpp │ └── TVideoIOYuv.h │ └── libmd5 │ ├── MD5.h │ ├── libmd5.c │ └── libmd5.h └── matlab ├── filterPrediction.m ├── getHevcIntraPredAndExtCovMtx.m ├── getHevcRefIdx.m ├── getOptimalPredictionWeights.m ├── journal_figure1.m ├── journal_figure2.m ├── journal_figure4.m ├── journal_figure5.m ├── journal_figure6.m ├── journal_figure7.m └── journal_figure8.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/README.md -------------------------------------------------------------------------------- /hm-14.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/COPYING -------------------------------------------------------------------------------- /hm-14.0/HM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/HM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hm-14.0/README-newconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/README-newconfig.txt -------------------------------------------------------------------------------- /hm-14.0/build/HM_vc10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/HM_vc10.sln -------------------------------------------------------------------------------- /hm-14.0/build/HM_vc8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/HM_vc8.sln -------------------------------------------------------------------------------- /hm-14.0/build/HM_vc9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/HM_vc9.sln -------------------------------------------------------------------------------- /hm-14.0/build/linux/app/TAppDecoder/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/app/TAppDecoder/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/app/TAppEncoder/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/app/TAppEncoder/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/common/makefile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/common/makefile.base -------------------------------------------------------------------------------- /hm-14.0/build/linux/lib/TAppCommon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/lib/TAppCommon/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/lib/TLibCommon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/lib/TLibCommon/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/lib/TLibDecoder/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/lib/TLibDecoder/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/lib/TLibEncoder/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/lib/TLibEncoder/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/lib/TLibVideoIO/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/lib/TLibVideoIO/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/utils/annexBbytecount/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/utils/annexBbytecount/makefile -------------------------------------------------------------------------------- /hm-14.0/build/linux/utils/convert_NtoMbit_YCbCr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/linux/utils/convert_NtoMbit_YCbCr/makefile -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TAppCommon_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TAppCommon_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TAppCommon_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TAppCommon_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TAppDecoder_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TAppDecoder_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TAppDecoder_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TAppDecoder_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TAppEncoder_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TAppEncoder_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TAppEncoder_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TAppEncoder_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibCommon_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibCommon_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibCommon_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibCommon_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibDecoder_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibDecoder_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibDecoder_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibDecoder_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibEncoder_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibEncoder_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibEncoder_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibEncoder_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibVideoIO_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibVideoIO_vc10.vcxproj -------------------------------------------------------------------------------- /hm-14.0/build/vc10/TLibVideoIO_vc10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc10/TLibVideoIO_vc10.vcxproj.filters -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TAppCommon_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TAppCommon_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TAppDecoder_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TAppDecoder_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TAppEncoder_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TAppEncoder_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TLibCommon_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TLibCommon_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TLibDecoder_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TLibDecoder_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TLibEncoder_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TLibEncoder_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc8/TLibVideoIO_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc8/TLibVideoIO_vc8.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TAppCommon_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TAppCommon_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TAppDecoder_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TAppDecoder_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TAppEncoder_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TAppEncoder_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TLibCommon_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TLibCommon_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TLibDecoder_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TLibDecoder_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TLibEncoder_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TLibEncoder_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/build/vc9/TLibVideoIO_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/build/vc9/TLibVideoIO_vc9.vcproj -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_intra_main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_intra_main.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_intra_main10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_intra_main10.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_lowdelay_P_main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_lowdelay_P_main.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_lowdelay_P_main10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_lowdelay_P_main10.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_lowdelay_main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_lowdelay_main.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_lowdelay_main10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_lowdelay_main10.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_randomaccess_main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_randomaccess_main.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/encoder_randomaccess_main10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/encoder_randomaccess_main10.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/misc/encoder_randomaccess_field_coding.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/misc/encoder_randomaccess_field_coding.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/misc/encoder_randomaccess_main_4tids.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/misc/encoder_randomaccess_main_4tids.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BQMall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BQMall.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BQSquare.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BQSquare.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BQTerrace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BQTerrace.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BasketballDrill.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BasketballDrill.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BasketballDrillText.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BasketballDrillText.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BasketballDrive.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BasketballDrive.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BasketballPass.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BasketballPass.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/BlowingBubbles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/BlowingBubbles.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Cactus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Cactus.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/ChinaSpeed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/ChinaSpeed.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/FourPeople.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/FourPeople.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Johnny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Johnny.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Kimono.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Kimono.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/KristenAndSara.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/KristenAndSara.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/NebutaFestival_10bit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/NebutaFestival_10bit.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/ParkScene.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/ParkScene.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/PartyScene.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/PartyScene.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/PeopleOnStreet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/PeopleOnStreet.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/RaceHorses.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/RaceHorses.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/RaceHorsesC.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/RaceHorsesC.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/SlideEditing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/SlideEditing.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/SlideShow.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/SlideShow.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/SteamLocomotiveTrain_10bit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/SteamLocomotiveTrain_10bit.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Traffic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Traffic.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Vidyo1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Vidyo1.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Vidyo3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Vidyo3.cfg -------------------------------------------------------------------------------- /hm-14.0/cfg/per-sequence/Vidyo4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/cfg/per-sequence/Vidyo4.cfg -------------------------------------------------------------------------------- /hm-14.0/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/compat/msvc/stdint.h -------------------------------------------------------------------------------- /hm-14.0/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/Doxyfile -------------------------------------------------------------------------------- /hm-14.0/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/Makefile -------------------------------------------------------------------------------- /hm-14.0/doc/README_data-structure.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/README_data-structure.ppt -------------------------------------------------------------------------------- /hm-14.0/doc/README_software-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/README_software-manual.txt -------------------------------------------------------------------------------- /hm-14.0/doc/gop-structure-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/gop-structure-example.pdf -------------------------------------------------------------------------------- /hm-14.0/doc/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/mainpage.h -------------------------------------------------------------------------------- /hm-14.0/doc/software-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/software-manual.pdf -------------------------------------------------------------------------------- /hm-14.0/doc/software-manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/doc/software-manual.tex -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppDecoder/TAppDecCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppDecoder/TAppDecCfg.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppDecoder/TAppDecCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppDecoder/TAppDecCfg.h -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppDecoder/TAppDecTop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppDecoder/TAppDecTop.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppDecoder/TAppDecTop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppDecoder/TAppDecTop.h -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppDecoder/decmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppDecoder/decmain.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppEncoder/TAppEncCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppEncoder/TAppEncCfg.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppEncoder/TAppEncCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppEncoder/TAppEncCfg.h -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppEncoder/TAppEncTop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppEncoder/TAppEncTop.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppEncoder/TAppEncTop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppEncoder/TAppEncTop.h -------------------------------------------------------------------------------- /hm-14.0/source/App/TAppEncoder/encmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/TAppEncoder/encmain.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/ExtractBitrates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/ExtractBitrates.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/ExtractBitrates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/ExtractBitrates.h -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/ExtractBitratesMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/ExtractBitratesMain.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/GuessLambdaModifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/GuessLambdaModifiers.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/GuessLambdaModifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/GuessLambdaModifiers.h -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/GuessLambdaModifiersMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/GuessLambdaModifiersMain.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/QuickStartGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/QuickStartGuide.pdf -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/RuntimeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/RuntimeError.h -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/encode.shl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/encode.shl -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/encodeCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/encodeCommand.sh -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/makefile -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/BitrateTargeting/targetBitrates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/BitrateTargeting/targetBitrates.sh -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/annexBbytecount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/annexBbytecount.cpp -------------------------------------------------------------------------------- /hm-14.0/source/App/utils/convert_NtoMbit_YCbCr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/App/utils/convert_NtoMbit_YCbCr.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TAppCommon/program_options_lite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TAppCommon/program_options_lite.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TAppCommon/program_options_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TAppCommon/program_options_lite.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/AccessUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/AccessUnit.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/CommonDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/CommonDef.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/ContextModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/ContextModel.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/ContextModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/ContextModel.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/ContextModel3DBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/ContextModel3DBuffer.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/ContextModel3DBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/ContextModel3DBuffer.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/ContextTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/ContextTables.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/NAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/NAL.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/SEI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/SEI.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/SEI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/SEI.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComBitCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComBitCounter.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComBitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComBitStream.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComBitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComBitStream.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComCABACTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComCABACTables.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComCABACTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComCABACTables.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComDataCU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComDataCU.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComDataCU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComDataCU.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComInterpolationFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComInterpolationFilter.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComInterpolationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComInterpolationFilter.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComList.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComLoopFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComLoopFilter.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComLoopFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComLoopFilter.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComMotionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComMotionInfo.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComMotionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComMotionInfo.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComMv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComMv.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPattern.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPattern.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPic.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPic.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPicSym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPicSym.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPicSym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPicSym.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPicYuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPicYuv.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPicYuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPicYuv.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPicYuvMD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPicYuvMD5.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPrediction.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComPrediction.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComRdCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComRdCost.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComRdCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComRdCost.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComRdCostWeightPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComRdCostWeightPrediction.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComRdCostWeightPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComRdCostWeightPrediction.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComRom.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComRom.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComSampleAdaptiveOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComSampleAdaptiveOffset.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComSampleAdaptiveOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComSampleAdaptiveOffset.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComSlice.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComSlice.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComTrQuant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComTrQuant.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComTrQuant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComTrQuant.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComWeightPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComWeightPrediction.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComWeightPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComWeightPrediction.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComYuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComYuv.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TComYuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TComYuv.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibCommon/TypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibCommon/TypeDef.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/AnnexBread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/AnnexBread.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/AnnexBread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/AnnexBread.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/NALread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/NALread.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/NALread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/NALread.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/SEIread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/SEIread.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/SEIread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/SEIread.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/SyntaxElementParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/SyntaxElementParser.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/SyntaxElementParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/SyntaxElementParser.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecBinCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecBinCoder.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecBinCoderCABAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecBinCoderCABAC.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecBinCoderCABAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecBinCoderCABAC.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecCAVLC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecCAVLC.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecCAVLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecCAVLC.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecCu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecCu.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecCu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecCu.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecEntropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecEntropy.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecEntropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecEntropy.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecGop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecGop.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecGop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecGop.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecSbac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecSbac.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecSbac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecSbac.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecSlice.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecSlice.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecTop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecTop.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibDecoder/TDecTop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibDecoder/TDecTop.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/AnnexBwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/AnnexBwrite.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/NALwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/NALwrite.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/NALwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/NALwrite.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/SEIwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/SEIwrite.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/SEIwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/SEIwrite.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/SyntaxElementWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/SyntaxElementWriter.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/SyntaxElementWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/SyntaxElementWriter.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncAnalyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncAnalyze.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncAnalyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncAnalyze.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncBinCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncBinCoder.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABAC.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABAC.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABACCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABACCounter.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABACCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncBinCoderCABACCounter.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncCavlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncCavlc.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncCavlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncCavlc.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncCfg.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncCu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncCu.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncCu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncCu.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncEntropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncEntropy.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncEntropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncEntropy.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncGOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncGOP.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncGOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncGOP.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncPic.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncPic.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncPreanalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncPreanalyzer.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncPreanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncPreanalyzer.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncRateCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncRateCtrl.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncRateCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncRateCtrl.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSbac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSbac.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSbac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSbac.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSearch.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSearch.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSlice.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncSlice.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncTop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncTop.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/TEncTop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/TEncTop.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/WeightPredAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/WeightPredAnalysis.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibEncoder/WeightPredAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibEncoder/WeightPredAnalysis.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibVideoIO/TVideoIOYuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibVideoIO/TVideoIOYuv.cpp -------------------------------------------------------------------------------- /hm-14.0/source/Lib/TLibVideoIO/TVideoIOYuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/TLibVideoIO/TVideoIOYuv.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/libmd5/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/libmd5/MD5.h -------------------------------------------------------------------------------- /hm-14.0/source/Lib/libmd5/libmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/libmd5/libmd5.c -------------------------------------------------------------------------------- /hm-14.0/source/Lib/libmd5/libmd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/hm-14.0/source/Lib/libmd5/libmd5.h -------------------------------------------------------------------------------- /matlab/filterPrediction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/filterPrediction.m -------------------------------------------------------------------------------- /matlab/getHevcIntraPredAndExtCovMtx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/getHevcIntraPredAndExtCovMtx.m -------------------------------------------------------------------------------- /matlab/getHevcRefIdx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/getHevcRefIdx.m -------------------------------------------------------------------------------- /matlab/getOptimalPredictionWeights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/getOptimalPredictionWeights.m -------------------------------------------------------------------------------- /matlab/journal_figure1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure1.m -------------------------------------------------------------------------------- /matlab/journal_figure2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure2.m -------------------------------------------------------------------------------- /matlab/journal_figure4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure4.m -------------------------------------------------------------------------------- /matlab/journal_figure5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure5.m -------------------------------------------------------------------------------- /matlab/journal_figure6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure6.m -------------------------------------------------------------------------------- /matlab/journal_figure7.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure7.m -------------------------------------------------------------------------------- /matlab/journal_figure8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmchen-github/iterative-filtering-intra-prediction/HEAD/matlab/journal_figure8.m --------------------------------------------------------------------------------