mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
8c6ebab747
* qatar/master: (26 commits) eac3dec: replace undefined 1<<31 with INT32_MIN in noise generation yadif: specify array size outside DECLARE_ALIGNED prores: specify array size outside DECLARE_ALIGNED brackets. WavPack demuxer: set packet duration tta: use skip_bits_long() mxfdec: Ignore the last entry in Avid's index table segments mxfdec: Sanity-check SampleRate mxfdec: Handle small EditUnitByteCount mxfdec: Consider OPAtom files that do not have exactly one EC to be OP1a mxfdec: Don't crash in mxf_packet_timestamps() if current_edit_unit overflows mxfdec: Zero nb_ptses in mxf_compute_ptses_fake_index() mxfdec: Sanity check PreviousPartition mxfdec: Never seek back in local sets and KLVs mxfdec: Move the current_partition check inside mxf_read_header() mxfdec: Fix infinite loop in mxf_packet_timestamps() mxfdec: Check eof_reached in mxf_read_local_tags() mxfdec: Check for NULL component mxfdec: Make sure mxf->nb_index_tables > 0 in mxf_packet_timestamps() mxfdec: Make sure x < index_table->nb_ptses build: Add missing directories to DIRS declarations. ... Conflicts: doc/build_system.txt doc/fate.texi libavfilter/x86/yadif_template.c libavformat/mxfdec.c libavutil/Makefile tests/fate/audio.mak tests/fate/prores.mak tests/fate/screen.mak tests/fate/video.mak tests/ref/fate/bethsoft-vid tests/ref/fate/cscd tests/ref/fate/dfa4 tests/ref/fate/nuv tests/ref/fate/vp8-sign-bias tests/ref/fate/wmv8-drm tests/ref/lavf/gxf Merged-by: Michael Niedermayer <michaelni@gmx.at>
52 lines
2.0 KiB
C
52 lines
2.0 KiB
C
/*
|
|
* AltiVec-enhanced yuv2yuvX
|
|
*
|
|
* Copyright (C) 2004 Romain Dolbeau <romain@dolbeau.org>
|
|
* based on the equivalent C code in swscale.c
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg 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.
|
|
*
|
|
* FFmpeg 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 FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef SWSCALE_PPC_YUV2RGB_ALTIVEC_H
|
|
#define SWSCALE_PPC_YUV2RGB_ALTIVEC_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "libswscale/swscale_internal.h"
|
|
|
|
#define YUV2PACKEDX_HEADER(suffix) \
|
|
void ff_yuv2 ## suffix ## _X_altivec(SwsContext *c, \
|
|
const int16_t *lumFilter, \
|
|
const int16_t **lumSrc, \
|
|
int lumFilterSize, \
|
|
const int16_t *chrFilter, \
|
|
const int16_t **chrUSrc, \
|
|
const int16_t **chrVSrc, \
|
|
int chrFilterSize, \
|
|
const int16_t **alpSrc, \
|
|
uint8_t *dest, \
|
|
int dstW, int dstY);
|
|
|
|
YUV2PACKEDX_HEADER(abgr);
|
|
YUV2PACKEDX_HEADER(bgra);
|
|
YUV2PACKEDX_HEADER(argb);
|
|
YUV2PACKEDX_HEADER(rgba);
|
|
YUV2PACKEDX_HEADER(rgb24);
|
|
YUV2PACKEDX_HEADER(bgr24);
|
|
|
|
#endif /* SWSCALE_PPC_YUV2RGB_ALTIVEC_H */
|