1 /*
2  * vp8utils.h - VP8 utilities (probability tables initialization)
3  *
4  * Copyright (C) 2013-2014 Intel Corporation
5  *   Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef GST_VP8_UTILS_H
24 #define GST_VP8_UTILS_H
25 
26 #include <gst/codecparsers/gstvp8parser.h>
27 
28 G_GNUC_INTERNAL void
29 gst_vp8_token_update_probs_init (GstVp8TokenProbs * probs);
30 
31 G_GNUC_INTERNAL void
32 gst_vp8_token_probs_init_defaults (GstVp8TokenProbs * probs);
33 
34 G_GNUC_INTERNAL void
35 gst_vp8_mv_update_probs_init (GstVp8MvProbs * probs);
36 
37 G_GNUC_INTERNAL void
38 gst_vp8_mv_probs_init_defaults (GstVp8MvProbs * probs);
39 
40 G_GNUC_INTERNAL void
41 gst_vp8_mode_probs_init_defaults (GstVp8ModeProbs * probs, gboolean key_frame);
42 
43 #endif /* GST_VP8_UTILS_H */
44