mirror of https://git.ffmpeg.org/ffmpeg.git
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.
This commit is contained in:
parent
929ec39ec4
commit
eb2b8bce39
|
@ -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
|
||||
|
|
|
@ -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,
|
|
@ -18,8 +18,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>
|
||||
|
||||
|
@ -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,
|
||||
int h) attribute_l1_text;
|
||||
|
||||
#endif /* AVCODEC_BFIN_HPELDSP_BFIN_H */
|
||||
#endif /* AVCODEC_BFIN_PIXELS_H */
|
Loading…
Reference in New Issue