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

Side by Side Diff: source/libvpx/vp8/encoder/onyx_int.h

Issue 898943004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 10 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/vp8/encoder/onyx_if.c ('k') | source/libvpx/vp8/vp8_cx_iface.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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/onyx_if.c ('k') | source/libvpx/vp8/vp8_cx_iface.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698