Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: source/libvpx/vp9/encoder/vp9_rdopt.c

Issue 1162573005: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_rd.c ('k') | source/libvpx/vp9/encoder/vp9_resize.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <assert.h> 11 #include <assert.h>
12 #include <math.h> 12 #include <math.h>
13 13
14 #include "./vp9_rtcd.h" 14 #include "./vp9_rtcd.h"
15 15
16 #include "vpx_mem/vpx_mem.h" 16 #include "vpx_mem/vpx_mem.h"
17 #include "vpx_ports/mem.h"
17 18
18 #include "vp9/common/vp9_common.h" 19 #include "vp9/common/vp9_common.h"
19 #include "vp9/common/vp9_entropy.h" 20 #include "vp9/common/vp9_entropy.h"
20 #include "vp9/common/vp9_entropymode.h" 21 #include "vp9/common/vp9_entropymode.h"
21 #include "vp9/common/vp9_idct.h" 22 #include "vp9/common/vp9_idct.h"
22 #include "vp9/common/vp9_mvref_common.h" 23 #include "vp9/common/vp9_mvref_common.h"
23 #include "vp9/common/vp9_pred_common.h" 24 #include "vp9/common/vp9_pred_common.h"
24 #include "vp9/common/vp9_quant_common.h" 25 #include "vp9/common/vp9_quant_common.h"
25 #include "vp9/common/vp9_reconinter.h" 26 #include "vp9/common/vp9_reconinter.h"
26 #include "vp9/common/vp9_reconintra.h" 27 #include "vp9/common/vp9_reconintra.h"
28 #include "vp9/common/vp9_scan.h"
27 #include "vp9/common/vp9_seg_common.h" 29 #include "vp9/common/vp9_seg_common.h"
28 #include "vp9/common/vp9_systemdependent.h" 30 #include "vp9/common/vp9_systemdependent.h"
29 31
30 #include "vp9/encoder/vp9_cost.h" 32 #include "vp9/encoder/vp9_cost.h"
31 #include "vp9/encoder/vp9_encodemb.h" 33 #include "vp9/encoder/vp9_encodemb.h"
32 #include "vp9/encoder/vp9_encodemv.h" 34 #include "vp9/encoder/vp9_encodemv.h"
33 #include "vp9/encoder/vp9_encoder.h" 35 #include "vp9/encoder/vp9_encoder.h"
34 #include "vp9/encoder/vp9_mcomp.h" 36 #include "vp9/encoder/vp9_mcomp.h"
35 #include "vp9/encoder/vp9_quantize.h" 37 #include "vp9/encoder/vp9_quantize.h"
36 #include "vp9/encoder/vp9_ratectrl.h" 38 #include "vp9/encoder/vp9_ratectrl.h"
(...skipping 4265 matching lines...) Expand 10 before | Expand all | Expand 10 after
4302 } 4304 }
4303 if (cm->interp_filter == SWITCHABLE) 4305 if (cm->interp_filter == SWITCHABLE)
4304 assert(best_filter_diff[SWITCHABLE_FILTERS] == 0); 4306 assert(best_filter_diff[SWITCHABLE_FILTERS] == 0);
4305 } else { 4307 } else {
4306 vp9_zero(best_filter_diff); 4308 vp9_zero(best_filter_diff);
4307 } 4309 }
4308 4310
4309 store_coding_context(x, ctx, best_ref_index, 4311 store_coding_context(x, ctx, best_ref_index,
4310 best_pred_diff, best_tx_diff, best_filter_diff, 0); 4312 best_pred_diff, best_tx_diff, best_filter_diff, 0);
4311 } 4313 }
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_rd.c ('k') | source/libvpx/vp9/encoder/vp9_resize.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698