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

Side by Side Diff: source/libvpx/vp8/common/setupintrarecon.h

Issue 111463005: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years 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/common/postproc.c ('k') | source/libvpx/vp8/decoder/decodeframe.c » ('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 #ifndef SETUPINTRARECON_H
12 #define SETUPINTRARECON_H
11 13
12 #include "vpx_scale/yv12config.h" 14 #include "vpx_scale/yv12config.h"
13 extern void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf); 15 extern void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf);
14 extern void vp8_setup_intra_recon_top_line(YV12_BUFFER_CONFIG *ybf); 16 extern void vp8_setup_intra_recon_top_line(YV12_BUFFER_CONFIG *ybf);
15 17
16 static 18 static
17 void setup_intra_recon_left(unsigned char *y_buffer, 19 void setup_intra_recon_left(unsigned char *y_buffer,
18 unsigned char *u_buffer, 20 unsigned char *u_buffer,
19 unsigned char *v_buffer, 21 unsigned char *v_buffer,
20 int y_stride, 22 int y_stride,
21 int uv_stride) 23 int uv_stride)
22 { 24 {
23 int i; 25 int i;
24 26
25 for (i = 0; i < 16; i++) 27 for (i = 0; i < 16; i++)
26 y_buffer[y_stride *i] = (unsigned char) 129; 28 y_buffer[y_stride *i] = (unsigned char) 129;
27 29
28 for (i = 0; i < 8; i++) 30 for (i = 0; i < 8; i++)
29 u_buffer[uv_stride *i] = (unsigned char) 129; 31 u_buffer[uv_stride *i] = (unsigned char) 129;
30 32
31 for (i = 0; i < 8; i++) 33 for (i = 0; i < 8; i++)
32 v_buffer[uv_stride *i] = (unsigned char) 129; 34 v_buffer[uv_stride *i] = (unsigned char) 129;
33 } 35 }
36
37 #endif
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/postproc.c ('k') | source/libvpx/vp8/decoder/decodeframe.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698