summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-25Moving from int_mv* to MV* (3).Dmitry Kovalev
Change-Id: I9795d0937bc07793c13d067281995e0750f694d9
2013-09-25Merge "Moving from int_mv* to MV* (2)."Dmitry Kovalev
2013-09-25Merge "Replacing txfm with tx."Dmitry Kovalev
2013-09-25Merge "Removing unused SUBMVREF_COUNT constant."Dmitry Kovalev
2013-09-25Merge "Adding vp9_get_entropy_contexts function."Dmitry Kovalev
2013-09-25Merge "Removing redundant 'extern' keyword."Dmitry Kovalev
2013-09-25Removing unused SUBMVREF_COUNT constant.Dmitry Kovalev
Change-Id: I302ab4603553352a84b57bc89bc9e3d037978d29
2013-09-24Adding vp9_get_entropy_contexts function.Dmitry Kovalev
Change-Id: Ife0dd29fb4ad65c7e12ac5f1db8cea4ed81de488
2013-09-24Replacing txfm with tx.Dmitry Kovalev
Renaming txfm_stepdown_count to tx_stepdown_count and max_txfm_size to max_tx_size. Change-Id: Ifc173e22c78240e561a57c4c741b64b1b8fc6fef
2013-09-24Merge "Cleaning up vp9_update_nmv_count function."Dmitry Kovalev
2013-09-24Cleaning up vp9_update_nmv_count function.Dmitry Kovalev
Using best_mv[2] array instead of two separate variables. Change-Id: Iefa0a41f5c42c42f2c66cef26750da68405f0f25
2013-09-24Removing redundant 'extern' keyword.Dmitry Kovalev
Change-Id: Ie51306689c0dc527a8aa12d3984389dd8f360dea
2013-09-24Replacing unsigned char* with uint8_t*.Dmitry Kovalev
Change-Id: I99a1880aee015ae16311ba05a31aa307df89bef2
2013-09-24Moving from int_mv* to MV* (2).Dmitry Kovalev
Updating fractional_mv_step_fp and fractional_mv_step_comp_fp function types. Change-Id: I601c4378bc39ac3ffd4e295d9cbd8e1f74829d46
2013-09-24Merge "Remove redundant mode update in sub8x8 decoding"Jingning Han
2013-09-24Merge "Moving from int_mv to MV."Dmitry Kovalev
2013-09-24Merge "Replace memcpy with vpx_memcpy"Yaowu Xu
2013-09-24Replace memcpy with vpx_memcpyYaowu Xu
Also removed obselete comment Change-Id: Iae1664777d76383639c637ee786e0d50fc45819a
2013-09-24Rename defined constantsYaowu Xu
The change is to better reflect the nature of the constants. Change-Id: Icabac6e9bceefbdb3f03f8218f88ef75943c30fb
2013-09-24Prevent using uninitialized value in RD decisionYaowu Xu
INT64_MAX may be assigned as RDCOST when RDCSOST computation is skipped for speed, this commit to prevent INT64_MAX from being used as real RDCOST in transform size decision. Change-Id: I89a945134191bbdea1f1431ade70424ac079eaac
2013-09-24Merge "Change to prevent invalid memory access"Yaowu Xu
2013-09-24Merge "Adding best_mv[2] array instead of two variables."Dmitry Kovalev
2013-09-24Merge "Small tweak in the constant quality parameter"Deb Mukherjee
2013-09-24Merge "vpxenc: Stop writing the WebM FrameRate element."Frank Galligan
2013-09-24vpxenc: Stop writing the WebM FrameRate element.Tom Finegan
The FrameRate element has been deprecated. Change-Id: I68ac496e7b33685a100a45d2772e0ff30eb6a811
2013-09-24Merge "Enable per transformed block zero coeffs forcing"Jingning Han
2013-09-24Merge "Calculate rd cost per transformed block"Jingning Han
2013-09-24Small tweak in the constant quality parameterDeb Mukherjee
Improves results a little. Change-Id: I7bcac02dbb65b43a993445cf557c520197114e5c
2013-09-24Merge "Number of instructions in fdct4_1d_sse2 reduced by two."Yunqing Wang
2013-09-24Change to prevent invalid memory accessYaowu Xu
After change of MI context storage , mi_8x8[] pointer may be null for a block outside of image border. The commit changes to access the data only after validation of mi_row and mi_col. Change-Id: I039c4eb486a228ea9d8e5f35ab9ae6717d718bf3
2013-09-23Number of instructions in fdct4_1d_sse2 reduced by two.A.Mahfoodh
Mathematically the results are the same. Change-Id: I1c5126cd3ca64e8515ca6331e0989c6f7dd651a0
2013-09-23Remove redundant mode update in sub8x8 decodingJingning Han
The probability model used to code prediction mode is conditioned on the immediate above and left 8x8 blocks' prediction modes. When the above/left block is coded in sub8x8 mode, we use the prediction mode of the bottom-right sub8x8 block as the reference to generate the context. This commit moves the update of mbmi.mode out of the sub8x8 decoding loop, hence removing redundant update steps and keeping the bottom- right block's mode for the decoding process of next blocks. Change-Id: I1e8d749684d201c1a1151697621efa5d569218b6
2013-09-23change to prevent computatio of log(0.0)Yaowu Xu
Change-Id: I5759f309f94a2b5c1297e6db3735c52986d3ecb2
2013-09-23fix integer overflow in vp8Yaowu Xu
Change-Id: I62550a7a883115f3ce878710cf3bb039bea54390
2013-09-23Merge "Correct 3 step search site initialziation"Yaowu Xu
2013-09-23Merge "Hide global symbols for macho32/64"Frank Galligan
2013-09-23Correct 3 step search site initialziationYaowu Xu
39c7b01d accidently reverted the row/col initialization, which broke mv clamps, which is dependent on the sites for valid motion vector range. This commit fixed the issue. Change-Id: Ibcce0226e0360b1ef483fe760b2e33f1af4bf494
2013-09-23Hide global symbols for macho32/64Yunqing Wang
Added hiding global symbols for macho32 and macho64 in x86inc.asm. This was done to fix exported symbol issue in Chrome build. Change-Id: I08d5c559b985b82f655b537469fee125615e78c0
2013-09-23Enable per transformed block zero coeffs forcingJingning Han
This commit enables forcing all coefficients zero per transformed block, when its rate-distortion cost is lower than regular coeff quantization. The overall performance improvement (including its parent patch on calculating rd cost per transformed block) at speed 1: derf: 0.298% yt: 0.452% hd: 0.741% stdhd: 0.006% Change-Id: I66005fe0fd7af192c3eba32e02fd6d77952accb5
2013-09-23Merge "Remove redundant mv_pred use for sub8x8 blocks"Jingning Han
2013-09-22Improves constant qual, constrained qual turned onDeb Mukherjee
Adds modeled functions to decide the qp for altref frames in constant q mode similar to other functions in use in bitrate mode. Also turns on the constrained quality mode (end-usage=2) option which was turned off before. Basic testing shows the mode works in principle, to cap bitrate to the target-bitrate specified, while allowing lower bitrate depending on the cq-level specified. The mode will need to be improved over time. Results for constant quality vs bitrate control mode: derfraw300/fullderfraw: +3.0% at constant quality over bitrate control. fullstdhdraw: +4.341% stdhdraw250: +5.361% Change-Id: If5027c9ec66c8e88d33e47062c6cb84a07b1cda9
2013-09-21Merge "Cleanup in vp9_init3smotion_compensation."Dmitry Kovalev
2013-09-20Merge "thumb: Extend the regexp for handling negative register indexing"James Zern
2013-09-20Use lowercase instruction in assemblyJohann
The iOS compiler does not recognize BLE: bad instruction `BLE idct32_transpose_pair_loop' Change-Id: I7426694c66bc31caf939a2d5000968da1222c15b
2013-09-20Calculate rd cost per transformed blockJingning Han
This commit makes the rate-distortion optimization loop evaluate the rd costs of regular quantization and all zero coeffs, per transformed block. It improves speed 1 compression performance: derf: 0.245% yt: 0.515% For a large partition that consists multiple transformed blocks, this allows more flexibility to selectively force a portion of them coded as all zero coeffs, as well be continued in the next patches. Change-Id: I211518be4179747b57375696f017d1160cc91851
2013-09-20Adding best_mv[2] array instead of two variables.Dmitry Kovalev
Change-Id: I584fe50f73879f6a72fada45714ef80893b6d549
2013-09-20Moving from int_mv to MV.Dmitry Kovalev
Converting vp9_mv_bit_cost, mv_err_cost, and mvsad_err_cost functions for now. Change-Id: I60e3cc20daef773c2adf9a18e30bc85b1c2eb211
2013-09-20Cleanup in vp9_init3smotion_compensation.Dmitry Kovalev
Change-Id: Ie47f53e76bc9530475c8c6d24e9b7a5a0189de56
2013-09-20Merge "Adding get_scan_and_band function."Dmitry Kovalev
2013-09-19Remove redundant mv_pred use for sub8x8 blocksJingning Han
The sub8x8 blocks has its own motion vector reference scheme. The mv_pred is only used blocks of sizes 8x8 and above, to find the starting point for motion search. This change does not change any coding behavior. It makes the encoding process slightly faster. (0.5% speed-up for local test on speed 1.) Change-Id: I746ee6ef0eac19aa3621be014afa12be8d82cbb9