Merge commit 'eb2b8bce39c93d16a02656238248c6cf697f447f'

* commit 'eb2b8bce39c93d16a02656238248c6cf697f447f':
  bfin: Use more sensible file names

Conflicts:
	libavcodec/bfin/pixels.h

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-03-14 02:12:45 +01:00
commit f3d3e3fa4e
8 changed files with 10 additions and 11 deletions

View File

@ -1,10 +1,10 @@
OBJS += bfin/dsputil_bfin.o \
OBJS += bfin/dsputil_init.o \
bfin/dsputil.o \
bfin/fdct_bfin.o \
bfin/hpel_pixels_bfin.o \
bfin/hpel_pixels_no_rnd.o \
bfin/idct_bfin.o \
bfin/pixels_bfin.o \
bfin/pixels.o \
OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_bfin.o
OBJS-$(CONFIG_VP3DSP) += bfin/vp3_bfin.o \
bfin/vp3_idct_bfin.o
OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_init.o
OBJS-$(CONFIG_VP3DSP) += bfin/vp3dsp_init.o \
bfin/vp3dsp.o

View File

@ -27,7 +27,7 @@
#include "libavutil/attributes.h"
#include "libavutil/bfin/attributes.h"
#include "libavcodec/hpeldsp.h"
#include "hpeldsp_bfin.h"
#include "pixels.h"
void ff_bfin_put_pixels8uc_no_rnd(uint8_t *block, const uint8_t *s0,
const uint8_t *s1, int line_size,

View File

@ -20,9 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_BFIN_HPELDSP_BFIN_H
#define AVCODEC_BFIN_HPELDSP_BFIN_H
#ifndef AVCODEC_BFIN_PIXELS_H
#define AVCODEC_BFIN_PIXELS_H
#include <stdint.h>
@ -40,4 +39,4 @@ void ff_bfin_put_pixels16uc(uint8_t *block, const uint8_t *s0,
const uint8_t *s1, int dest_size, int line_size,
int h) attribute_l1_text;
#endif /* AVCODEC_BFIN_HPELDSP_BFIN_H */
#endif /* AVCODEC_BFIN_PIXELS_H */