~ubuntu-branches/ubuntu/utopic/libav/utopic-proposed

« back to all changes in this revision

Viewing changes to libavcodec/wmv2dsp.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler, Reinhard Tartler, Rico Tzschichholz
  • Date: 2014-08-30 11:02:45 UTC
  • mfrom: (1.3.47 sid)
  • Revision ID: package-import@ubuntu.com-20140830110245-io3dg7q85wfr7125
Tags: 6:11~beta1-2
[ Reinhard Tartler ]
* Make libavcodec-dev depend on libavresample-dev

[ Rico Tzschichholz ]
* Some fixes and leftovers from soname bumps

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include <stdint.h>
23
23
 
 
24
#include "qpeldsp.h"
 
25
 
24
26
typedef struct WMV2DSPContext {
25
27
    void (*idct_add)(uint8_t *dest, int line_size, int16_t *block);
26
28
    void (*idct_put)(uint8_t *dest, int line_size, int16_t *block);
27
29
 
 
30
    qpel_mc_func put_mspel_pixels_tab[8];
 
31
 
28
32
    int idct_perm;
29
33
} WMV2DSPContext;
30
34