~ubuntu-branches/debian/squeeze/gstreamer0.10-ffmpeg/squeeze

« back to all changes in this revision

Viewing changes to gst-libs/ext/ffmpeg/libavcodec/bfin/mpegvideo_bfin.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-02-19 18:14:59 UTC
  • mfrom: (4.1.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20100219181459-mect96st3px2jfsi
Tags: 0.10.9.2-1
* New upstream pre-release:
  + debian/patches/03_restricted-caps.patch,
    debian/patches/04_ignore-vdpau.patch:
    - Dropped, merged upstream.
* debian/patches/03_too-new-codec-ids.patch:
  + Disable some ffmpeg codec IDs because Debian's
    ffmpeg is once again too old...

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "libavcodec/mpegvideo.h"
26
26
#include "dsputil_bfin.h"
27
27
 
28
 
 
29
 
void ff_bfin_fdct (DCTELEM *block) attribute_l1_text;
30
 
 
31
 
 
32
28
static int dct_quantize_bfin (MpegEncContext *s,
33
29
                              DCTELEM *block, int n,
34
30
                              int qscale, int *overflow)
41
37
    int   max=0;
42
38
 
43
39
    PROF("fdct",0);
44
 
    ff_bfin_fdct (block);
 
40
    s->dsp.fdct(block);
45
41
    EPROF();
46
42
 
47
43
    PROF("denoise",1);
147
143
 
148
144
void MPV_common_init_bfin (MpegEncContext *s)
149
145
{
150
 
    s->dct_quantize= dct_quantize_bfin;
 
146
/*     s->dct_quantize= dct_quantize_bfin; */
151
147
}
152
148