| 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 |
| 11 | 11 |
| 12 #include "vp8/common/header.h" | 12 #include "vp8/common/header.h" |
| 13 #include "encodemv.h" | 13 #include "encodemv.h" |
| 14 #include "vp8/common/entropymode.h" | 14 #include "vp8/common/entropymode.h" |
| 15 #include "vp8/common/findnearmv.h" | 15 #include "vp8/common/findnearmv.h" |
| 16 #include "mcomp.h" | 16 #include "mcomp.h" |
| 17 #include "vp8/common/systemdependent.h" | 17 #include "vp8/common/systemdependent.h" |
| 18 #include <assert.h> | 18 #include <assert.h> |
| 19 #include <stdio.h> | 19 #include <stdio.h> |
| 20 #include <limits.h> | 20 #include <limits.h> |
| 21 #include "vp8/common/pragmas.h" | |
| 22 #include "vpx/vpx_encoder.h" | 21 #include "vpx/vpx_encoder.h" |
| 23 #include "vpx_mem/vpx_mem.h" | 22 #include "vpx_mem/vpx_mem.h" |
| 24 #include "bitstream.h" | 23 #include "bitstream.h" |
| 25 | 24 |
| 26 #include "defaultcoefcounts.h" | 25 #include "defaultcoefcounts.h" |
| 27 #include "vp8/common/common.h" | 26 #include "vp8/common/common.h" |
| 28 | 27 |
| 29 const int vp8cx_base_skip_false_prob[128] = | 28 const int vp8cx_base_skip_false_prob[128] = |
| 30 { | 29 { |
| 31 255, 255, 255, 255, 255, 255, 255, 255, | 30 255, 255, 255, 255, 255, 255, 255, 255, |
| (...skipping 1697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1729 fprintf(f, " },\n"); | 1728 fprintf(f, " },\n"); |
| 1730 } | 1729 } |
| 1731 | 1730 |
| 1732 fprintf(f, " },\n"); | 1731 fprintf(f, " },\n"); |
| 1733 } | 1732 } |
| 1734 | 1733 |
| 1735 fprintf(f, "};\n"); | 1734 fprintf(f, "};\n"); |
| 1736 fclose(f); | 1735 fclose(f); |
| 1737 } | 1736 } |
| 1738 #endif | 1737 #endif |
| OLD | NEW |