diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:06:44 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:34 +0200 |
commit | 9cf0841ef35239660fc313314778414e2828f025 (patch) | |
tree | 97c8fcbdfacc747aca91ebc43843f52a17b12085 /libavcodec/h263dec.c | |
parent | 99560a4caab1a0a13504fe0897481d7c98b432fb (diff) | |
download | ffmpeg-9cf0841ef35239660fc313314778414e2828f025.tar.gz |
dsputil: Add ff_ prefix to the dsputil*_init* functions
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 5404c90153..401596717b 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -557,7 +557,7 @@ retry: if (s->codec_id == CODEC_ID_MPEG4 && s->xvid_build>=0 && avctx->idct_algo == FF_IDCT_AUTO && (av_get_cpu_flags() & AV_CPU_FLAG_MMX)) { avctx->idct_algo= FF_IDCT_XVIDMMX; avctx->coded_width= 0; // force reinit -// dsputil_init(&s->dsp, avctx); +// ff_dsputil_init(&s->dsp, avctx); s->picture_number=0; } #endif |