| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |