summaryrefslogtreecommitdiff
path: root/vp9
AgeCommit message (Collapse)Author
2014-05-13Silience -wextra warnings in vp9_reconintra.cJingning Han
The warning messages complained that there are unused arguments in a few prediction modes. This structure was designed on purpose, such that a wrapper function can cover all prediction mode cases and make them readily accessible as an pointer array. This commit silences such warnings. Change-Id: I7036b6bdb70747e5327d8f6fceb154f100abc4c0
2014-05-12Merge "vp9_pickmode.c: Removed unused function parameters"Yaowu Xu
2014-05-12Merge "Change to use proper type"Yaowu Xu
2014-05-12Merge "fixed comparison of different int types."Yaowu Xu
2014-05-12vp9_pickmode.c: Removed unused function parametersYaowu Xu
Change-Id: I4ec07d3935dc56ca16ea4ba1e5730b09f1bf1f21
2014-05-12Change to use proper typeYaowu Xu
Change-Id: If1afb9f3eaec88079d1d97907870409bce691c2a
2014-05-12Merge "Cleanup unused parameters"Yaowu Xu
2014-05-12Merge "Fixed comparison of different int types"Yaowu Xu
2014-05-12fixed comparison of different int types.Yaowu Xu
Change-Id: Iaa5543eb9e17589d46d9ed2bc363e2646ed4e01e
2014-05-12Merge "Only build neon assembly for armv7 targets"Johann
2014-05-12Cleanup unused parametersYaowu Xu
Remove unused function parameters from: vp9_encodemb.c vp9_encodeframe.c Change-Id: I07725e5099cf98486e70c9c70babb0cd785c58a9
2014-05-12Fixed comparison of different int typesYaowu Xu
Change-Id: I499635967faaf4ec1c498e88d09b2d3f2a4badba
2014-05-12Only build neon assembly for armv7 targetsJohann
Allow selectively building just the intrinsics for armv8 Change-Id: I2f29b2e4508b8b8e5649c2906b3159ad1d4ec477
2014-05-12Clean up of firstpass.cPaul Wilkins
Re-factor duplicate code. Add two pass check for use of section_intra_rating as it is un-initialised in the 1 pass and rt case. Change-Id: I93120796f07961b8a21fb26e1a9f0d3d13949994
2014-05-12First pass clean up.Paul Wilkins
One of a series of changes to clean up two pass allocation as precursor to support for multiple arf or boosted frames per GF/ARF group. This change pulls out the calculation of the total bits allocated to a GF/ARF group into a function, to aid readability and reduce the line count for define_gf_group(). This change should have no material impact on output. Change-Id: I716fba08e26f9ddde3257e7d9b188453791883a3
2014-05-11Merge "Fix check of debug counts for corrupt frame"Adrian Grange
2014-05-10Merge "vp9_dx_iface: subtract ptrs to validate frame_size"James Zern
2014-05-10Merge "Apply constrained partition search range to non-RD mode decision"Jingning Han
2014-05-09Merge "Removing VP9DecoderConfig."Dmitry Kovalev
2014-05-09Apply constrained partition search range to non-RD mode decisionJingning Han
This commit enables a chessboard pattern for partition search. All the black blocks run regular partition search ranging from 8x8 to 32x32. The rest white blocks take the nearby blocks' information to adaptively decide the effective search range. The compression performance for rtc set at speed -5 is down by 1.5%. For pedestrian 1080p at speed -5, the runtime goes from 41594 ms to 39697 ms, i.e., about 5% faster. Change-Id: Ia4b96e237abfaada487c743bca08fe1afd298685
2014-05-09Merge "Add an x86inc MMX fwht4x4."Alex Converse
2014-05-09Merge "Allow speed 5 lossless"Alex Converse
2014-05-09Fix check of debug counts for corrupt frameAdrian Grange
Fixes the idecoder in the case where: cm->error_resilient_mode == 0, and cm->frame_parallel_decoding_mode == 0, but new_fb->corrupted == 1. The assert in debug_check_frame_counts fails to take into account the case of a corrupt frame. Change-Id: Idf318a68458cc88d65d6f3f408a10d8ffe87e43f
2014-05-09Merge changes I3edd4b95,I4514f974,Ie7fa4386Jingning Han
* changes: Turn on unit tests for SSSE3 8x8 forward and inverse 2D-DCT Change eob threshold for partial inverse 8x8 2D-DCT to 12 SSSE3 8x8 inverse 2D-DCT with first 10 coeffs non-zero
2014-05-09Allow speed 5 losslessAlex Converse
tx_mode supercedes whatever mechanism is used to push for 16x16 allowing for the use of the 4x4 transform. Change-Id: I6c3f05ab9fe52050e40cc6303de9334653763289
2014-05-09Merge "Skip testing large tx sizes when encoding lossless."Yaowu Xu
2014-05-08vp9_dx_iface: subtract ptrs to validate frame_sizeJames Zern
Change-Id: Ic5a6a4a2fec802d9c9c7a71dbae59d5b4d3a8b23
2014-05-08vp9_dx_iface: fix implicit ptrdiff_t -> uint32_t conversionJames Zern
Change-Id: Ib773aac06b22009408cdd29a73190b276a53fcf6
2014-05-08Skip testing large tx sizes when encoding lossless.Alex Converse
Change-Id: Ib7a17893f6dc0f501b1252ae32804ede144dde37
2014-05-08Removing VP9DecoderConfig.Dmitry Kovalev
We only used two members from that struct: max_threads and inv_tile_order. Moving them directly to VP9Decoder struct. Change-Id: If696a4e5b5b41868a55f3cc971e1d7c1dd9d5f69
2014-05-08Merge "Simplifying decoder_decode() function."Dmitry Kovalev
2014-05-08Add an x86inc MMX fwht4x4.Alex Converse
Change-Id: Ib0a73d4863478f9b8a00976379d25d2f6ebbb197
2014-05-08Change eob threshold for partial inverse 8x8 2D-DCT to 12Jingning Han
The scanning order has the first 12 coefficients of the 8x8 2D-DCT sitting in the top left 4x4 block. Hence the partial inverse 8x8 2D-DCT allows to handle cases with eob below 12. The overall runtime of the inverse 8x8 2D-DCT unit is reduced from 166 cycles (using SSE2) to 150 cycles (using SSSE3). Change-Id: I4514f9748042809ac84df4c14382c00f313f1cd2
2014-05-08Merge "vp9_pickmode: Fix signed/unsigned mismatch."Frank Galligan
2014-05-08Merge "vp9_firstpass: Fix MSVC data loss warning."Frank Galligan
2014-05-07vp9_svc_layercontext: Clean up function definition mismatch.Tom Finegan
vp9_is_upper_layer_key_frame() definition does not match declaration-- it was missing the second const. Change-Id: I71312579eb443be1924b8b06d8b3177c3dcb40f3
2014-05-07vp9_firstpass: Fix MSVC data loss warning.Tom Finegan
Change-Id: I5307fe85ee081fbcfdf55a974f7eba1e0070c723
2014-05-07vp9_pickmode: Fix signed/unsigned mismatch.Tom Finegan
Avoids getting reverted on the next libvpx chrome roll attempt. Change-Id: I2431bd601111a78320af5f211f6413009674f1c8
2014-05-07SSSE3 8x8 inverse 2D-DCT with first 10 coeffs non-zeroJingning Han
This commit enables ssse3 assembly implementation of the 8x8 inverse 2D-DCT with only first 10 coefficients non-zero. The average runtime for this unit goes down from 198 cycles to 129 cycles (34.8% faster). Change-Id: Ie7fa4386f6d3a2fe0d47a2eb26fc2a6bbc592ac7
2014-05-07Merge "Tune rate-distortion modeling to account for frame light change"Jingning Han
2014-05-07Merge "Remove separate arf and gf minq tables."Yaowu Xu
2014-05-07Merge "Rate control adjustment."Yaowu Xu
2014-05-07Merge "Cleaning up vp9_encode_frame() function."Dmitry Kovalev
2014-05-07Merge "Using SPEED_FEATURES instead of VP9_COMP in vp9_init_search_range()."Dmitry Kovalev
2014-05-07Remove separate arf and gf minq tables.Paul Wilkins
Merged minq tables for arf and gf cases. These tables were almost the same and for VBR the arf table was not used at all. Change-Id: Ie3c87e91dab613cf06f6945ac1ace0e0e4213d34
2014-05-07Rate control adjustment.Paul Wilkins
Small adjustment to the active Q range calculations. These changes should slightly extend the available Q range for KF/GF/ARF and narrow it for other frames. The results for this change in isolation are broadly positive for SSIM and average PSNR and slightly up but mixed for opsnr. derf +0.293% opsnr, +1.286% SSIM std-hd + 0.528% opsnr, + 1.746% SSIM yt +0.056% opsnr, +0.457% SSIM yt-hd -0.147% opsnr, + 0.226% SSIM Change-Id: If065280342027ecc5d44b49fc1d440dfef041002
2014-05-07Merge "Moving pair_set_epi32 macro into vp9_dct32x32_sse2.c."Dmitry Kovalev
2014-05-07Merge "Removing MODE_TEST_HIT_STATS."Dmitry Kovalev
2014-05-07Merge "Revert "Add an MMX fwht4x4""Alex Converse
2014-05-07Merge "Clean up full-pixel search calling code"Yunqing Wang