Minghai Shang
528a5c28b3
Merge "[svc rc] RC improvement for key frames in upper layers for spatial svc."
2014-05-01 10:53:47 -07:00
Dmitry Kovalev
6653769a02
Merge "Removing unused alt_activity_measure() function."
2014-04-30 15:50:34 -07:00
Dmitry Kovalev
9d3831db33
Merge "Removing unused typedefs."
2014-04-30 15:50:26 -07:00
Minghai Shang
f916a3e256
[svc rc] RC improvement for key frames in upper layers for spatial svc.
...
Change-Id: Id6ab59e505be28cd4eb9f1fe114feb47debe0539
2014-04-30 15:12:55 -07:00
Jingning Han
39761eb5d6
Merge "Enable SSSE3 implementation of 8x8 forward 2D-DCT"
2014-04-30 13:41:36 -07:00
Dmitry Kovalev
e826b61305
Removing unused typedefs.
...
Change-Id: I34ebc59980cf661ed658555e245bf0a93e5c3373
2014-04-30 12:34:09 -07:00
Minghai Shang
d9e8c1eafc
Merge "[svc rc] Increase worst quality for enhancement layers"
2014-04-30 11:02:54 -07:00
Dmitry Kovalev
d2bc8816a1
Merge "Adding search_site_config struct."
2014-04-29 16:59:47 -07:00
Dmitry Kovalev
14967cd4f5
Removing unused alt_activity_measure() function.
...
Change-Id: I6b520553cb5334b44356dc4651a2dbc1cb93cca5
2014-04-29 16:58:22 -07:00
Dmitry Kovalev
dde35bbbcc
Merge "Cleaning up vp9_full_search_sadx8() function."
2014-04-29 16:37:17 -07:00
Jingning Han
1eaa3a76dc
Enable SSSE3 implementation of 8x8 forward 2D-DCT
...
Assembly implementation of ssse3 8x8 forward 2D-DCT. The current
version is turned on only for x86_64. The average unit runtime
goes from 157 cycles down to 136 cycles, i.e., about 12.8% faster.
This translates into about 1.5% speed-up for pedestrian_area 1080p
at speed 2.
Change-Id: I0f12435857e9425ed7ce12541344dfa16837f4f4
2014-04-29 15:49:18 -07:00
Dmitry Kovalev
3e9943885a
Merge "scale_and_extend_frame{,_nonnormative}() cleanup."
2014-04-29 15:09:38 -07:00
Dmitry Kovalev
9b042dc04c
Merge "Removing unused vp9_variance_halfpixvar*() functions."
2014-04-29 14:52:58 -07:00
Dmitry Kovalev
aa464eca5e
Adding search_site_config struct.
...
Change-Id: I2ad333553e673dbabcdc0f0366aea311e90849bf
2014-04-29 10:34:53 -07:00
Dmitry Kovalev
b87130093e
Cleaning up vp9_full_search_sadx8() function.
...
Change-Id: I61f977a7d0b177881bd5c1a7179fa5f8f089e9a6
2014-04-25 14:55:02 -07:00
Dmitry Kovalev
fae988dc3b
Merge "Cleaning up vp9_full_search_sadx3()."
2014-04-25 13:52:20 -07:00
Dmitry Kovalev
3875df8fdb
scale_and_extend_frame{,_nonnormative}() cleanup.
...
Change-Id: Ie99fd7af436ab2f6b3ef0c3f1a652fb26116d861
2014-04-25 12:44:26 -07:00
Dmitry Kovalev
6e01079cc0
Removing unused vp9_variance_halfpixvar*() functions.
...
Change-Id: I99695564a3aa9bc8c79ac0a551d257e2ff3ad3c3
2014-04-25 11:50:07 -07:00
Jingning Han
7e6d851675
Merge "Apply max intra block size condition to non-RD mode decision"
2014-04-24 17:27:14 -07:00
Dmitry Kovalev
03e7deae4f
Removing unused vp9_sub_pixel_mse* functions.
...
Change-Id: I8d906da3bd6de0d3042676846f61a8b2a3444508
2014-04-24 11:49:12 -07:00
Minghai Shang
4a1386e3c8
[svc rc] Increase worst quality for enhancement layers
...
Change-Id: Ifbfa90894eec9944bd55f364f1d17eb152338d6b
2014-04-24 11:33:23 -07:00
Adrian Grange
1aa2d1a444
Remove key_frame_frequency variable from VP9_COMP
...
This member of VP9_COMP seemed unnecessary since it
only shadowed VP9EncoderConfig.key_freq that is
accessible through VP9_COMP.
Change-Id: Ib751bb1cf1b0b3c50a2a527d7c34f6829dd6fee3
2014-04-24 08:44:47 -07:00
Jingning Han
5a4e17b42f
Apply max intra block size condition to non-RD mode decision
...
Change-Id: I9b86a94d11db2239c85f61aeed5bbd83a0dfa028
2014-04-23 18:59:26 -07:00
Adrian Grange
086ae99235
Fixed handling of regularly placed keyframes
...
The encoder was not handling requests to place keyframes at
fixed intervals, i.e. kf_min_dist == kf_max_dist, correctly.
In this case when looking to place the next keyframe it was
accumulating stats all the way up to the end of the firstpass
file. This patch corrects this behavior.
Change-Id: I948ad9f1d7faa0c05861df588136cce3bb61d7e7
2014-04-23 16:59:43 -07:00
Jingning Han
ace194a059
Merge "Chessboard pattern prediction filter type search in non-RD coding"
2014-04-23 12:48:27 -07:00
Dmitry Kovalev
8e528e8e6d
Merge "Adding macro to define vp9_variance_WxH_c() functions."
2014-04-23 11:35:11 -07:00
Jingning Han
8969f7c892
Chessboard pattern prediction filter type search in non-RD coding
...
This commit introduces a chessboard pattern search for the prediction
filter type search. It runs extensive search in alternate blocks and
allows the rest blocks to refer coding decisions of their nearby
neighbors.
For pedestrian 1080p at 4000 kbps, the runtime of speed -5 goes down
from 43990 ms to 42200 ms. The overall compression performance for
RTC set is changed by -1.37%.
Change-Id: Icfe220c49451cda796f0ca91d935c9ed01e56c9d
2014-04-23 10:41:07 -07:00
Dmitry Kovalev
e608418899
Renaming MB_PREDICTION_MODE to PREDICTION_MODE.
...
Actually, it would be great to have two separate enums INTRA_MODES and
INTER_MODES in future.
Change-Id: I6c4147cf0002853da9c1e03fe9514eab876f01c8
2014-04-22 17:48:31 -07:00
Dmitry Kovalev
54006d1a1b
Adding macro to define vp9_variance_WxH_c() functions.
...
Change-Id: I983e3831938d4ae055de20b8d257d223e7916b1f
2014-04-22 17:45:30 -07:00
Dmitry Kovalev
ef003078e8
Renaming "onyx" to "encoder".
...
Actual renames:
vp9_onyx_if.c -> vp9_encoder.c
vp9_onyx_int.h -> vp9_encoder.h
Change-Id: I80532a80b118d0060518e6c6a0d640e3f411783c
2014-04-22 14:57:05 -07:00
Alex Converse
9926f1566e
Merge "Fix the CONFIG_ALPHA build."
2014-04-22 12:49:28 -07:00
Dmitry Kovalev
4a6abcb900
Merge "Template macros to generate subpix variance functions."
2014-04-22 11:42:42 -07:00
Dmitry Kovalev
a5cd9afb8c
Merge "Inlining vp9_set_segmentation_map() function."
2014-04-22 11:42:07 -07:00
Alex Converse
e6222b1a47
Fix the CONFIG_ALPHA build.
...
Change-Id: Ib89fe34812c17cd6294ce3c38f87d43a79abb16f
2014-04-22 11:23:49 -07:00
Minghai Shang
afc5636699
Merge "Bug fix for svc first pass rate control."
2014-04-22 10:59:55 -07:00
Adrian Grange
4fa3e98876
Merge "Force ARNR filtering to be centered on the ARF frame"
2014-04-22 10:39:02 -07:00
Adrian Grange
59e733ca81
Force ARNR filtering to be centered on the ARF frame
...
ARNR filtering is now forced to be centered on the ARF
frame and the other two options have been removed.
The other modes of constructing the ARNR frame were
not used and there does not seem to be any good
reason to maintain them.
This is purely an encoder-side change.
Change-Id: Ic772636d23f280752973852b9740083532a49de2
2014-04-22 08:03:25 -07:00
Dmitry Kovalev
0b25a3ca95
Inlining vp9_set_segmentation_map() function.
...
Change-Id: I82f23f0f91a0be8329e20fcd2a5918c6a096dacc
2014-04-21 20:22:36 -07:00
Dmitry Kovalev
b02b362d21
Template macros to generate subpix variance functions.
...
Change-Id: I931fde6013aa18294b49a361f75f177ab1262574
2014-04-21 19:57:25 -07:00
Yaowu Xu
0bba4f1efa
Merge "Allow full RD TX size search for GF/ALT at speed 2"
2014-04-21 18:32:36 -07:00
Paul Wilkins
de43d2c67e
Merge "Change naming of end_usage parameter."
2014-04-21 18:29:22 -07:00
Yaowu Xu
d928b34efe
Allow full RD TX size search for GF/ALT at speed 2
...
For speed 3 and above, such search is only allowed at speed 3.
The change helped cif and stdhd set by 1.2% and .7% in compression,
but increased the encoding time by around 5%.
Change-Id: Ifa4832327f1c1bef3decb032ceb769cbf50e059f
2014-04-21 12:31:46 -07:00
Paul Wilkins
4c7af859d7
Change naming of end_usage parameter.
...
The end_useage parameter is confusingly named since it
now actually defines the rate control method used.
Change-Id: I98912caabfe556b7af0b939a645d1336409e4d71
2014-04-21 11:49:38 -07:00
Dmitry Kovalev
79303c993a
Merge "Adding setup_frame() function."
2014-04-21 10:44:08 -07:00
Dmitry Kovalev
ece689650a
Merge "Cleaning up vp9_rdopt.c."
2014-04-21 10:41:04 -07:00
Dmitry Kovalev
f0a47f85c5
Merge "Don't set loop filter sharpness in vp9_change_config()."
2014-04-21 10:40:30 -07:00
Dmitry Kovalev
37f0886bbf
Merge "Cleaning vp9_variance.{c, h}."
2014-04-21 10:40:05 -07:00
Jingning Han
e38ca5422c
Merge "Enable background detection for adaptive quantizer control"
2014-04-21 09:36:11 -07:00
Yaowu Xu
a7ecad59b6
Merge "Merge two new VBR adjustment schemes."
2014-04-21 09:11:24 -07:00
Yaowu Xu
3a5b7dd087
Merge "Add experimental VBR adaptation method."
2014-04-21 09:11:19 -07:00