/* * Copyright (c) 2010 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include "boolhuff.h" #if defined(SECTIONBITS_OUTPUT) unsigned __int64 Sectionbits[500]; #endif const unsigned int vp8_prob_cost[256] = …; void vp8_start_encode(BOOL_CODER *bc, unsigned char *source, unsigned char *source_end) { … } void vp8_stop_encode(BOOL_CODER *bc) { … } void vp8_encode_value(BOOL_CODER *bc, int data, int bits) { … }