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

Side by Side Diff: source/libvpx/vp8/encoder/bitstream.c

Issue 341293003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 6 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/vp8/encoder/arm/neon/denoising_neon.c ('k') | source/libvpx/vp8/encoder/block.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) 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
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
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/arm/neon/denoising_neon.c ('k') | source/libvpx/vp8/encoder/block.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698