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

« back to all changes in this revision

Viewing changes to libavcodec/eatgq.c

  • 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:
32
32
#define BITSTREAM_READER_LE
33
33
#include "get_bits.h"
34
34
#include "bytestream.h"
35
 
#include "dsputil.h"
 
35
#include "idctdsp.h"
36
36
#include "aandcttab.h"
37
37
#include "eaidct.h"
38
38
#include "internal.h"
51
51
    TgqContext *s = avctx->priv_data;
52
52
    uint8_t idct_permutation[64];
53
53
    s->avctx = avctx;
54
 
    ff_init_scantable_permutation(idct_permutation, FF_NO_IDCT_PERM);
 
54
    ff_init_scantable_permutation(idct_permutation, FF_IDCT_PERM_NONE);
55
55
    ff_init_scantable(idct_permutation, &s->scantable, ff_zigzag_direct);
56
56
    avctx->time_base = (AVRational){1, 15};
57
57
    avctx->pix_fmt   = AV_PIX_FMT_YUV420P;