~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/mjpegdec.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#ifndef AVCODEC_MJPEGDEC_H
30
30
#define AVCODEC_MJPEGDEC_H
31
31
 
 
32
#include "libavutil/log.h"
 
33
 
32
34
#include "avcodec.h"
33
35
#include "get_bits.h"
34
36
#include "dsputil.h"
36
38
#define MAX_COMPONENTS 4
37
39
 
38
40
typedef struct MJpegDecodeContext {
 
41
    AVClass *class;
39
42
    AVCodecContext *avctx;
40
43
    GetBitContext gb;
41
44
 
106
109
 
107
110
    uint16_t (*ljpeg_buffer)[4];
108
111
    unsigned int ljpeg_buffer_size;
 
112
 
 
113
    int extern_huff;
109
114
} MJpegDecodeContext;
110
115
 
111
116
int ff_mjpeg_decode_init(AVCodecContext *avctx);