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

« back to all changes in this revision

Viewing changes to libavcodec/rv34.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:
115
115
    int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si);
116
116
    int (*decode_mb_info)(struct RV34DecContext *r);
117
117
    int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst);
118
 
    void (*loop_filter)(struct RV34DecContext *r);
 
118
    void (*loop_filter)(struct RV34DecContext *r, int row);
119
119
}RV34DecContext;
120
120
 
121
121
/**
123
123
 */
124
124
int ff_rv34_get_start_offset(GetBitContext *gb, int blocks);
125
125
int ff_rv34_decode_init(AVCodecContext *avctx);
126
 
int ff_rv34_decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size);
 
126
int ff_rv34_decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size);
127
127
int ff_rv34_decode_end(AVCodecContext *avctx);
128
128
 
129
129
#endif /* AVCODEC_RV34_H */