~ubuntu-branches/ubuntu/vivid/ffmpeg/vivid

« back to all changes in this revision

Viewing changes to libavcodec/x86/hpeldsp.h

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun
  • Date: 2014-11-05 01:18:23 UTC
  • mfrom: (0.2.17 sid)
  • Revision ID: package-import@ubuntu.com-20141105011823-xsbeceffs43wtkn7
Tags: 7:2.4.3-1
* Import new upstream bugfix release 2.4.3.
   - Refresh Change-symbol-versioning.patch.
   - Add new symbols to the libavdevice symbols file.
* Enable libbs2b on arm64, since it is now available.
* Disable frei0r and libx264 on x32, libsoxr and openal on sparc64
  and libopencv on m68k, sh4, sparc64 and x32, because they are not
  (yet) avialable there.
* Disable assembler optimizations on x32, as they wouldn't work there.
* Include config.log in the build-log, when compiling fails.
* Add fix-hppa-tests.patch to work around a gcc bug on hppa.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of FFmpeg.
 
3
 *
 
4
 * FFmpeg is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * FFmpeg is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with FFmpeg; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 */
 
18
 
 
19
#ifndef AVCODEC_X86_HPELDSP_H
 
20
#define AVCODEC_X86_HPELDSP_H
 
21
 
 
22
#include <stddef.h>
 
23
#include <stdint.h>
 
24
 
 
25
void ff_avg_pixels8_x2_mmx(uint8_t *block, const uint8_t *pixels,
 
26
                           ptrdiff_t line_size, int h);
 
27
 
 
28
void ff_avg_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels,
 
29
                            ptrdiff_t line_size, int h);
 
30
void ff_avg_pixels8_xy2_mmxext(uint8_t *block, const uint8_t *pixels,
 
31
                               ptrdiff_t line_size, int h);
 
32
void ff_avg_pixels8_xy2_ssse3(uint8_t *block, const uint8_t *pixels,
 
33
                               ptrdiff_t line_size, int h);
 
34
 
 
35
void ff_avg_pixels16_xy2_mmx(uint8_t *block, const uint8_t *pixels,
 
36
                             ptrdiff_t line_size, int h);
 
37
void ff_avg_pixels16_xy2_sse2(uint8_t *block, const uint8_t *pixels,
 
38
                              ptrdiff_t line_size, int h);
 
39
void ff_avg_pixels16_xy2_ssse3(uint8_t *block, const uint8_t *pixels,
 
40
                               ptrdiff_t line_size, int h);
 
41
 
 
42
void ff_put_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels,
 
43
                            ptrdiff_t line_size, int h);
 
44
void ff_put_pixels8_xy2_ssse3(uint8_t *block, const uint8_t *pixels,
 
45
                              ptrdiff_t line_size, int h);
 
46
void ff_put_pixels16_xy2_mmx(uint8_t *block, const uint8_t *pixels,
 
47
                             ptrdiff_t line_size, int h);
 
48
void ff_put_pixels16_xy2_sse2(uint8_t *block, const uint8_t *pixels,
 
49
                              ptrdiff_t line_size, int h);
 
50
void ff_put_pixels16_xy2_ssse3(uint8_t *block, const uint8_t *pixels,
 
51
                               ptrdiff_t line_size, int h);
 
52
 
 
53
#endif /* AVCODEC_X86_HPELDSP_H */