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

« back to all changes in this revision

Viewing changes to libavcodec/huffyuv.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:
33
33
#include "libavutil/mem.h"
34
34
 
35
35
#include "avcodec.h"
 
36
#include "bswapdsp.h"
36
37
#include "huffyuv.h"
37
38
 
38
39
int ff_huffyuv_generate_bits_table(uint32_t *dst, const uint8_t *len_table)
79
80
    s->avctx = avctx;
80
81
    s->flags = avctx->flags;
81
82
 
82
 
    ff_dsputil_init(&s->dsp, avctx);
 
83
    ff_bswapdsp_init(&s->bdsp);
83
84
 
84
85
    s->width = avctx->width;
85
86
    s->height = avctx->height;