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 |
668 #if CONFIG_TEMPORAL_DENOISING | 671 #if CONFIG_TEMPORAL_DENOISING |
669 VP8_DENOISER denoiser; | 672 VP8_DENOISER denoiser; |
670 #endif | 673 #endif |
671 | 674 |
672 /* Coding layer state variables */ | 675 /* Coding layer state variables */ |
673 unsigned int current_layer; | 676 unsigned int current_layer; |
674 LAYER_CONTEXT layer_context[VPX_TS_MAX_LAYERS]; | 677 LAYER_CONTEXT layer_context[VPX_TS_MAX_LAYERS]; |
675 | 678 |
676 int64_t frames_in_layer[VPX_TS_MAX_LAYERS]; | 679 int64_t frames_in_layer[VPX_TS_MAX_LAYERS]; |
677 int64_t bytes_in_layer[VPX_TS_MAX_LAYERS]; | 680 int64_t bytes_in_layer[VPX_TS_MAX_LAYERS]; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 if(!lval) \ | 735 if(!lval) \ |
733 vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\ | 736 vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\ |
734 "Failed to allocate "#lval);\ | 737 "Failed to allocate "#lval);\ |
735 } while(0) | 738 } while(0) |
736 #endif | 739 #endif |
737 #ifdef __cplusplus | 740 #ifdef __cplusplus |
738 } // extern "C" | 741 } // extern "C" |
739 #endif | 742 #endif |
740 | 743 |
741 #endif // VP8_ENCODER_ONYX_INT_H_ | 744 #endif // VP8_ENCODER_ONYX_INT_H_ |
OLD | NEW |