| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 30 matching lines...) Expand all Loading... |
| 41 } VP9LfSync; | 41 } VP9LfSync; |
| 42 | 42 |
| 43 // Allocate memory for loopfilter row synchronization. | 43 // Allocate memory for loopfilter row synchronization. |
| 44 void vp9_loop_filter_alloc(struct VP9Common *cm, VP9LfSync *lf_sync, | 44 void vp9_loop_filter_alloc(struct VP9Common *cm, VP9LfSync *lf_sync, |
| 45 int rows, int width); | 45 int rows, int width); |
| 46 | 46 |
| 47 // Deallocate loopfilter synchronization related mutex and data. | 47 // Deallocate loopfilter synchronization related mutex and data. |
| 48 void vp9_loop_filter_dealloc(VP9LfSync *lf_sync, int rows); | 48 void vp9_loop_filter_dealloc(VP9LfSync *lf_sync, int rows); |
| 49 | 49 |
| 50 // Multi-threaded loopfilter that uses the tile threads. | 50 // Multi-threaded loopfilter that uses the tile threads. |
| 51 void vp9_loop_filter_frame_mt(struct VP9Decoder *pbi, | 51 void vp9_loop_filter_frame_mt(YV12_BUFFER_CONFIG *frame, |
| 52 struct VP9Decoder *pbi, |
| 52 struct VP9Common *cm, | 53 struct VP9Common *cm, |
| 53 int frame_filter_level, | 54 int frame_filter_level, |
| 54 int y_only, int partial_frame); | 55 int y_only); |
| 55 | 56 |
| 56 #endif // VP9_DECODER_VP9_DTHREAD_H_ | 57 #endif // VP9_DECODER_VP9_DTHREAD_H_ |
| OLD | NEW |