~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/proresdsp.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-10 09:45:02 UTC
  • mfrom: (1.1.28) (2.1.45 sid)
  • Revision ID: package-import@ubuntu.com-20140810094502-p8pds4kq0zpig5oq
Tags: 6:11~alpha1-1
* New upstream Release v11
  - Fixes Unchecked conversion from double to enum (Closes: #749164)
* Add some post v11_alpha1 patches from upstream
* All SONAMEs bumped because of internal changes, but external API is
  promised to have not changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
typedef struct ProresDSPContext {
31
31
    int idct_permutation_type;
32
32
    uint8_t idct_permutation[64];
33
 
    int dct_permutation_type;
34
 
    uint8_t dct_permutation[64];
35
33
    void (* idct_put) (uint16_t *out, int linesize, int16_t *block, const int16_t *qmat);
36
 
    void (* fdct) (const uint16_t *src, int linesize, int16_t *block);
37
34
} ProresDSPContext;
38
35
 
39
36
void ff_proresdsp_init(ProresDSPContext *dsp);
40
37
 
41
 
void ff_proresdsp_x86_init(ProresDSPContext *dsp);
 
38
void ff_proresdsp_init_x86(ProresDSPContext *dsp);
42
39
 
43
40
#endif /* AVCODEC_PRORESDSP_H */