diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-12 17:54:30 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-10-18 00:10:36 +0200 |
commit | 58224dc5f3d4fea40a8d55cca87291a960c11622 (patch) | |
tree | 26feac08e39dc3efa71ad0cc0c2f207cd6265e56 /libavcodec/ppc/videodsp.c | |
parent | 0cf86fabfa5820596cca2cfead63c6f8df76c3f2 (diff) | |
download | ffmpeg-58224dc5f3d4fea40a8d55cca87291a960c11622.tar.gz |
ppc: avcodec: Drop silly "_ppc" suffixes from files in ppc subdirectories
Diffstat (limited to 'libavcodec/ppc/videodsp.c')
-rw-r--r-- | libavcodec/ppc/videodsp.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/libavcodec/ppc/videodsp.c b/libavcodec/ppc/videodsp.c new file mode 100644 index 0000000000..b9e003b487 --- /dev/null +++ b/libavcodec/ppc/videodsp.c @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2003-2004 Romain Dolbeau + * + * This file is part of Libav. + * + * Libav is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * Libav is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with Libav; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "libavutil/attributes.h" +#include "libavcodec/videodsp.h" + +static void prefetch_ppc(uint8_t *mem, ptrdiff_t stride, int h) +{ + register const uint8_t *p = mem; + do { + __asm__ volatile ("dcbt 0,%0" : : "r" (p)); + p += stride; + } while(--h); +} + +av_cold void ff_videodsp_init_ppc(VideoDSPContext *ctx, int bpc) +{ + ctx->prefetch = prefetch_ppc; +} |