~ubuntu-branches/ubuntu/precise/libav/precise-updates

« back to all changes in this revision

Viewing changes to libavcodec/vp56.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:30:00 UTC
  • mfrom: (1.2.8) (1.1.13 experimental)
  • Revision ID: package-import@ubuntu.com-20120112223000-cmfo7w78q13i2fd9
Tags: 4:0.8~beta2-1ubuntu1
* Merge from debian, remaining changes:
  - don't build against libdirac, lame, libopenjpeg, librtmp, 
    x264, and xvid  (all in universe)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * @file
3
 
 * VP5 and VP6 compatible video decoder (common features)
4
 
 *
 
1
/*
5
2
 * Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>
6
3
 *
7
4
 * This file is part of Libav.
21
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22
19
 */
23
20
 
 
21
/**
 
22
 * @file
 
23
 * VP5 and VP6 compatible video decoder (common features)
 
24
 */
 
25
 
24
26
#ifndef AVCODEC_VP56_H
25
27
#define AVCODEC_VP56_H
26
28
 
28
30
#include "dsputil.h"
29
31
#include "get_bits.h"
30
32
#include "bytestream.h"
31
 
#include "cabac.h"
32
33
#include "vp56dsp.h"
33
34
 
34
35
typedef struct vp56_context VP56Context;