media/libvpx/vp8/common/entropymv.c

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/media/libvpx/vp8/common/entropymv.c	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,49 @@
     1.4 +/*
     1.5 + *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
     1.6 + *
     1.7 + *  Use of this source code is governed by a BSD-style license
     1.8 + *  that can be found in the LICENSE file in the root of the source
     1.9 + *  tree. An additional intellectual property rights grant can be found
    1.10 + *  in the file PATENTS.  All contributing project authors may
    1.11 + *  be found in the AUTHORS file in the root of the source tree.
    1.12 + */
    1.13 +
    1.14 +
    1.15 +#include "entropymv.h"
    1.16 +
    1.17 +const MV_CONTEXT vp8_mv_update_probs[2] =
    1.18 +{
    1.19 +    {{
    1.20 +        237,
    1.21 +        246,
    1.22 +        253, 253, 254, 254, 254, 254, 254,
    1.23 +        254, 254, 254, 254, 254, 250, 250, 252, 254, 254
    1.24 +    }},
    1.25 +    {{
    1.26 +        231,
    1.27 +        243,
    1.28 +        245, 253, 254, 254, 254, 254, 254,
    1.29 +        254, 254, 254, 254, 254, 251, 251, 254, 254, 254
    1.30 +    }}
    1.31 +};
    1.32 +const MV_CONTEXT vp8_default_mv_context[2] =
    1.33 +{
    1.34 +    {{
    1.35 +        /* row */
    1.36 +        162,                                        /* is short */
    1.37 +        128,                                        /* sign */
    1.38 +        225, 146, 172, 147, 214,  39, 156,          /* short tree */
    1.39 +        128, 129, 132,  75, 145, 178, 206, 239, 254, 254 /* long bits */
    1.40 +    }},
    1.41 +
    1.42 +
    1.43 +
    1.44 +    {{
    1.45 +        /* same for column */
    1.46 +        164,                                        /* is short */
    1.47 +        128,
    1.48 +        204, 170, 119, 235, 140, 230, 228,
    1.49 +        128, 130, 130,  74, 148, 180, 203, 236, 254, 254 /* long bits */
    1.50 +
    1.51 +    }}
    1.52 +};

mercurial