| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 /* Store last frame's MV info for next frame MV prediction */ | 658 /* Store last frame's MV info for next frame MV prediction */ |
| 659 int_mv *lfmv; | 659 int_mv *lfmv; |
| 660 int *lf_ref_frame_sign_bias; | 660 int *lf_ref_frame_sign_bias; |
| 661 int *lf_ref_frame; | 661 int *lf_ref_frame; |
| 662 | 662 |
| 663 /* force next frame to intra when kf_auto says so */ | 663 /* force next frame to intra when kf_auto says so */ |
| 664 int force_next_frame_intra; | 664 int force_next_frame_intra; |
| 665 | 665 |
| 666 int droppable; | 666 int droppable; |
| 667 | 667 |
| 668 int initial_width; | |
| 669 int initial_height; | |
| 670 | |
| 671 #if CONFIG_TEMPORAL_DENOISING | 668 #if CONFIG_TEMPORAL_DENOISING |
| 672 VP8_DENOISER denoiser; | 669 VP8_DENOISER denoiser; |
| 673 #endif | 670 #endif |
| 674 | 671 |
| 675 /* Coding layer state variables */ | 672 /* Coding layer state variables */ |
| 676 unsigned int current_layer; | 673 unsigned int current_layer; |
| 677 LAYER_CONTEXT layer_context[VPX_TS_MAX_LAYERS]; | 674 LAYER_CONTEXT layer_context[VPX_TS_MAX_LAYERS]; |
| 678 | 675 |
| 679 int64_t frames_in_layer[VPX_TS_MAX_LAYERS]; | 676 int64_t frames_in_layer[VPX_TS_MAX_LAYERS]; |
| 680 int64_t bytes_in_layer[VPX_TS_MAX_LAYERS]; | 677 int64_t bytes_in_layer[VPX_TS_MAX_LAYERS]; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 if(!lval) \ | 732 if(!lval) \ |
| 736 vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\ | 733 vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\ |
| 737 "Failed to allocate "#lval);\ | 734 "Failed to allocate "#lval);\ |
| 738 } while(0) | 735 } while(0) |
| 739 #endif | 736 #endif |
| 740 #ifdef __cplusplus | 737 #ifdef __cplusplus |
| 741 } // extern "C" | 738 } // extern "C" |
| 742 #endif | 739 #endif |
| 743 | 740 |
| 744 #endif // VP8_ENCODER_ONYX_INT_H_ | 741 #endif // VP8_ENCODER_ONYX_INT_H_ |
| OLD | NEW |