~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/jfdctint.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Jonathan Nieder, Reinhard Tartler
  • Date: 2011-05-13 12:31:33 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20110513123133-zqcsj91sf5489y4s
Tags: 4:0.7~beta2-1
[ Jonathan Nieder ]
* only install doc/APIChanges in *-dev and libav-doc packages
* move note on source package lineage to README.Debian
* install NEWS.Debian in libavcodec-dev
* use dpkg source format 3.0 (quilt)
* allow "debian/rules clean" as unprivileged user

[ Reinhard Tartler ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
 
182
182
 
183
183
static av_always_inline void row_fdct(DCTELEM * data){
184
 
  int_fast32_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
185
 
  int_fast32_t tmp10, tmp11, tmp12, tmp13;
186
 
  int_fast32_t z1, z2, z3, z4, z5;
 
184
  int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
 
185
  int tmp10, tmp11, tmp12, tmp13;
 
186
  int z1, z2, z3, z4, z5;
187
187
  DCTELEM *dataptr;
188
188
  int ctr;
189
189
 
259
259
GLOBAL(void)
260
260
ff_jpeg_fdct_islow (DCTELEM * data)
261
261
{
262
 
  int_fast32_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
263
 
  int_fast32_t tmp10, tmp11, tmp12, tmp13;
264
 
  int_fast32_t z1, z2, z3, z4, z5;
 
262
  int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
 
263
  int tmp10, tmp11, tmp12, tmp13;
 
264
  int z1, z2, z3, z4, z5;
265
265
  DCTELEM *dataptr;
266
266
  int ctr;
267
267
 
345
345
GLOBAL(void)
346
346
ff_fdct248_islow (DCTELEM * data)
347
347
{
348
 
  int_fast32_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
349
 
  int_fast32_t tmp10, tmp11, tmp12, tmp13;
350
 
  int_fast32_t z1;
 
348
  int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
 
349
  int tmp10, tmp11, tmp12, tmp13;
 
350
  int z1;
351
351
  DCTELEM *dataptr;
352
352
  int ctr;
353
353