~ubuntu-branches/ubuntu/vivid/gstreamer-vaapi/vivid

« back to all changes in this revision

Viewing changes to ext/codecparsers/gst-libs/gst/codecparsers/vp8utils.h

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2014-08-06 23:56:00 UTC
  • mfrom: (0.1.4 sid) (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140806235600-fg1kcmiu67k315q5
Tags: 0.5.9-2
* Remove spurious build-deps: libva-drm1, libavcodec-dev. (Closes: #757283)
* Drop Build-Depends-Indep and build docs unconditionally on all archs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
void
 
29
gst_vp8_token_update_probs_init (GstVp8TokenProbs * probs);
 
30
 
 
31
void
 
32
gst_vp8_token_probs_init_defaults (GstVp8TokenProbs * probs);
 
33
 
 
34
void
 
35
gst_vp8_mv_update_probs_init (GstVp8MvProbs * probs);
 
36
 
 
37
void
 
38
gst_vp8_mv_probs_init_defaults (GstVp8MvProbs * probs);
 
39
 
 
40
void
 
41
gst_vp8_mode_probs_init_defaults (GstVp8ModeProbs * probs, gboolean key_frame);
 
42
 
 
43
#endif /* GST_VP8_UTILS_H */