mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Give all wrappers for external libraries names starting with lib.
Originally committed as revision 9226 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6f74b71ef0
commit
6f1af73557
@ -277,16 +277,16 @@ OBJS-$(CONFIG_ADPCM_YAMAHA_DECODER) += adpcm.o
|
||||
OBJS-$(CONFIG_ADPCM_YAMAHA_ENCODER) += adpcm.o
|
||||
|
||||
# external codec libraries
|
||||
OBJS-$(CONFIG_LIBAMR) += amr.o
|
||||
OBJS-$(CONFIG_LIBA52) += a52dec.o
|
||||
OBJS-$(CONFIG_LIBFAAC) += faac.o
|
||||
OBJS-$(CONFIG_LIBFAAD) += faad.o
|
||||
OBJS-$(CONFIG_LIBA52) += liba52.o
|
||||
OBJS-$(CONFIG_LIBAMR) += libamr.o
|
||||
OBJS-$(CONFIG_LIBFAAC) += libfaac.o
|
||||
OBJS-$(CONFIG_LIBFAAD) += libfaad.o
|
||||
OBJS-$(CONFIG_LIBGSM) += libgsm.o
|
||||
OBJS-$(CONFIG_LIBMP3LAME) += mp3lameaudio.o
|
||||
OBJS-$(CONFIG_LIBMP3LAME) += libmp3lame.o
|
||||
OBJS-$(CONFIG_LIBTHEORA) += libtheoraenc.o
|
||||
OBJS-$(CONFIG_LIBVORBIS) += oggvorbis.o
|
||||
OBJS-$(CONFIG_X264) += x264.o
|
||||
OBJS-$(CONFIG_XVID) += xvidff.o xvid_rc.o
|
||||
OBJS-$(CONFIG_LIBVORBIS) += libvorbis.o
|
||||
OBJS-$(CONFIG_X264) += libx264.o
|
||||
OBJS-$(CONFIG_XVID) += libxvidff.o libxvid_rc.o
|
||||
|
||||
|
||||
OBJS-$(CONFIG_AAC_PARSER) += aac_parser.o aac_ac3_parser.o
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define XVID_INTERNAL_H
|
||||
|
||||
/**
|
||||
* @file xvid_internal.h
|
||||
* @file libxvid_internal.h
|
||||
* common functions for use with the XviD wrappers
|
||||
*/
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include <xvid.h>
|
||||
#include <unistd.h>
|
||||
#include "avcodec.h"
|
||||
#include "xvid_internal.h"
|
||||
#include "libxvid_internal.h"
|
||||
//#include "dsputil.h"
|
||||
#include "mpegvideo.h"
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <xvid.h>
|
||||
#include <unistd.h>
|
||||
#include "avcodec.h"
|
||||
#include "xvid_internal.h"
|
||||
#include "libxvid_internal.h"
|
||||
|
||||
/**
|
||||
* Buffer management macros.
|
Loading…
Reference in New Issue
Block a user