Skip to content
Snippets Groups Projects
Commit eb2b8bce authored by Diego Biurrun's avatar Diego Biurrun
Browse files

bfin: Use more sensible file names

Drop non-informative _bfin suffix, rename some files for consistency with
other architectures, rename others to reflect their content.
parent 929ec39e
No related branches found
No related tags found
No related merge requests found
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
File moved
File moved
...@@ -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,
......
File moved
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,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_HPELDSP_BFIN_H #ifndef AVCODEC_BFIN_PIXELS_H
#define AVCODEC_BFIN_HPELDSP_BFIN_H #define AVCODEC_BFIN_PIXELS_H
#include <stdint.h> #include <stdint.h>
...@@ -37,4 +37,4 @@ void ff_bfin_put_pixels16uc(uint8_t *block, const uint8_t *s0, ...@@ -37,4 +37,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 */
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment