Commit f3d3e3fa authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'eb2b8bce'

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

Conflicts:
	libavcodec/bfin/pixels.h
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents be60e204 eb2b8bce
OBJS += bfin/dsputil_bfin.o \ OBJS += bfin/dsputil_init.o \
bfin/dsputil.o \
bfin/fdct_bfin.o \ bfin/fdct_bfin.o \
bfin/hpel_pixels_bfin.o \
bfin/hpel_pixels_no_rnd.o \ bfin/hpel_pixels_no_rnd.o \
bfin/idct_bfin.o \ bfin/idct_bfin.o \
bfin/pixels_bfin.o \ bfin/pixels.o \
OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_bfin.o OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_init.o
OBJS-$(CONFIG_VP3DSP) += bfin/vp3_bfin.o \ OBJS-$(CONFIG_VP3DSP) += bfin/vp3dsp_init.o \
bfin/vp3_idct_bfin.o bfin/vp3dsp.o
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include "libavutil/attributes.h" #include "libavutil/attributes.h"
#include "libavutil/bfin/attributes.h" #include "libavutil/bfin/attributes.h"
#include "libavcodec/hpeldsp.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, void ff_bfin_put_pixels8uc_no_rnd(uint8_t *block, const uint8_t *s0,
const uint8_t *s1, int line_size, const uint8_t *s1, int line_size,
......
...@@ -20,9 +20,8 @@ ...@@ -20,9 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef AVCODEC_BFIN_PIXELS_H
#ifndef AVCODEC_BFIN_HPELDSP_BFIN_H #define AVCODEC_BFIN_PIXELS_H
#define AVCODEC_BFIN_HPELDSP_BFIN_H
#include <stdint.h> #include <stdint.h>
...@@ -40,4 +39,4 @@ void ff_bfin_put_pixels16uc(uint8_t *block, const uint8_t *s0, ...@@ -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, const uint8_t *s1, int dest_size, int line_size,
int h) attribute_l1_text; int h) attribute_l1_text;
#endif /* AVCODEC_BFIN_HPELDSP_BFIN_H */ #endif /* AVCODEC_BFIN_PIXELS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment