~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-updates

« back to all changes in this revision

Viewing changes to libavcodec/aac_ac3_parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 17:51:19 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120175119-gu6kw1arv5tmf1vr
Tags: 3:0.svn20090119-1ubuntu1+unstripped1
* merge with the ubuntu.jaunty branch
* reenable x264 LP: #303537
* build against vdpau
* enable xvmc support

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "avcodec.h"
28
28
#include "parser.h"
29
29
 
 
30
typedef enum {
 
31
    AAC_AC3_PARSE_ERROR_SYNC        = -1,
 
32
    AAC_AC3_PARSE_ERROR_BSID        = -2,
 
33
    AAC_AC3_PARSE_ERROR_SAMPLE_RATE = -3,
 
34
    AAC_AC3_PARSE_ERROR_FRAME_SIZE  = -4,
 
35
    AAC_AC3_PARSE_ERROR_FRAME_TYPE  = -5,
 
36
    AAC_AC3_PARSE_ERROR_CRC         = -6,
 
37
    AAC_AC3_PARSE_ERROR_CHANNEL_CFG = -7,
 
38
} AACAC3ParseError;
 
39
 
30
40
typedef struct AACAC3ParseContext {
31
41
    ParseContext pc;
32
42
    int frame_size;