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

Side by Side Diff: source/libvpx/vp9/common/vp9_implicit_segmentation.c

Issue 11974002: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « source/libvpx/vp9/common/vp9_idctllm.c ('k') | source/libvpx/vp9/common/vp9_invtrans.h » ('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) 2012 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 15 matching lines...) Expand all
26 struct list_el *next; 26 struct list_el *next;
27 }; 27 };
28 typedef struct list_el item; 28 typedef struct list_el item;
29 29
30 // connected colorsegments 30 // connected colorsegments
31 typedef struct { 31 typedef struct {
32 int min_x; 32 int min_x;
33 int min_y; 33 int min_y;
34 int max_x; 34 int max_x;
35 int max_y; 35 int max_y;
36 long long sum_x; 36 int64_t sum_x;
37 long long sum_y; 37 int64_t sum_y;
38 int pixels; 38 int pixels;
39 int seg_value; 39 int seg_value;
40 int label; 40 int label;
41 } segment_info; 41 } segment_info;
42 42
43 43
44 typedef enum { 44 typedef enum {
45 SEGMENT_MODE, 45 SEGMENT_MODE,
46 SEGMENT_MV, 46 SEGMENT_MV,
47 SEGMENT_REFFRAME, 47 SEGMENT_REFFRAME,
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 printf("%4d:%4d", mi[mb_index].mbmi.mv[0].as_mv.row, 246 printf("%4d:%4d", mi[mb_index].mbmi.mv[0].as_mv.row,
247 mi[mb_index].mbmi.mv[0].as_mv.col); 247 mi[mb_index].mbmi.mv[0].as_mv.col);
248 } 248 }
249 printf("\n"); 249 printf("\n");
250 ++mb_index; 250 ++mb_index;
251 } 251 }
252 printf("\n"); 252 printf("\n");
253 } 253 }
254 } 254 }
255 255
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_idctllm.c ('k') | source/libvpx/vp9/common/vp9_invtrans.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698