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