| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |