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

Side by Side Diff: source/libvpx/vp8/common/debugmodes.c

Issue 7671004: Update libvpx snapshot to v0.9.7-p1 (Cayuga). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: '' Created 9 years, 4 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 | Annotate | Revision Log
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
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 { 90 {
91 int b_col; 91 int b_col;
92 int bindex; 92 int bindex;
93 93
94 for (b_col = 0; b_col < 4 * cols; b_col++) 94 for (b_col = 0; b_col < 4 * cols; b_col++)
95 { 95 {
96 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2); 96 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2);
97 bindex = (b_row & 3) * 4 + (b_col & 3); 97 bindex = (b_row & 3) * 4 + (b_col & 3);
98 98
99 if (mi[mb_index].mbmi.mode == B_PRED) 99 if (mi[mb_index].mbmi.mode == B_PRED)
100 fprintf(mvs, "%2d ", mi[mb_index].bmi[bindex].mode); 100 fprintf(mvs, "%2d ", mi[mb_index].bmi[bindex].as_mode);
101 else 101 else
102 fprintf(mvs, "xx "); 102 fprintf(mvs, "xx ");
103 103
104 } 104 }
105 105
106 fprintf(mvs, "\n"); 106 fprintf(mvs, "\n");
107 } 107 }
108 } 108 }
109 fprintf(mvs, "\n"); 109 fprintf(mvs, "\n");
110 110
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 } 148 }
149 149
150 fprintf(mvs, "\n"); 150 fprintf(mvs, "\n");
151 } 151 }
152 } 152 }
153 fprintf(mvs, "\n"); 153 fprintf(mvs, "\n");
154 154
155 155
156 fclose(mvs); 156 fclose(mvs);
157 } 157 }
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/coefupdateprobs.h ('k') | source/libvpx/vp8/common/defaultcoefcounts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698