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

Side by Side Diff: source/libvpx/vp8/decoder/onyxd_if.c

Issue 13849011: libvpx: Pull from upstream (Closed) Base URL: https://src.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « source/libvpx/build/make/configure.sh ('k') | source/libvpx/vp8/encoder/bitstream.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
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 295
296 /* Signal that we have no frame to show. */ 296 /* Signal that we have no frame to show. */
297 cm->show_frame = 0; 297 cm->show_frame = 0;
298 298
299 /* Nothing more to do. */ 299 /* Nothing more to do. */
300 return 0; 300 return 0;
301 } 301 }
302 302
303 return 1; 303 return 1;
304 } 304 }
305 305
306 int vp8dx_receive_compressed_data(VP8D_COMP *pbi, size_t size, 306 int vp8dx_receive_compressed_data(VP8D_COMP *pbi, size_t size,
307 const uint8_t *source, 307 const uint8_t *source,
308 int64_t time_stamp) 308 int64_t time_stamp)
309 { 309 {
310 #if HAVE_NEON 310 #if HAVE_NEON
311 int64_t dx_store_reg[8]; 311 int64_t dx_store_reg[8];
312 #endif 312 #endif
313 VP8_COMMON *cm = &pbi->common; 313 VP8_COMMON *cm = &pbi->common;
314 int retcode = -1; 314 int retcode = -1;
315 315
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 remove_decompressor(pbi); 519 remove_decompressor(pbi);
520 } 520 }
521 else 521 else
522 { 522 {
523 /* TODO : remove frame threads and decoder instances for each 523 /* TODO : remove frame threads and decoder instances for each
524 * thread here */ 524 * thread here */
525 } 525 }
526 526
527 return VPX_CODEC_OK; 527 return VPX_CODEC_OK;
528 } 528 }
OLDNEW
« no previous file with comments | « source/libvpx/build/make/configure.sh ('k') | source/libvpx/vp8/encoder/bitstream.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698