Browse Source

libxvid: Give more suitable names to libxvid-related files.

tags/n0.11
Diego Biurrun 13 years ago
parent
commit
c8b4a3999b
4 changed files with 6 additions and 6 deletions
  1. +1
    -1
      libavcodec/Makefile
  2. +1
    -1
      libavcodec/libxvid.c
  3. +3
    -3
      libavcodec/libxvid.h
  4. +1
    -1
      libavcodec/libxvid_rc.c

+ 1
- 1
libavcodec/Makefile View File

@@ -616,7 +616,7 @@ OBJS-$(CONFIG_LIBVPX_DECODER) += libvpxdec.o
OBJS-$(CONFIG_LIBVPX_ENCODER) += libvpxenc.o
OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o
OBJS-$(CONFIG_LIBXAVS_ENCODER) += libxavs.o
OBJS-$(CONFIG_LIBXVID_ENCODER) += libxvidff.o
OBJS-$(CONFIG_LIBXVID_ENCODER) += libxvid.o

# parsers
OBJS-$(CONFIG_AAC_PARSER) += aac_parser.o aac_ac3_parser.o \


libavcodec/libxvidff.c → libavcodec/libxvid.c View File

@@ -31,7 +31,7 @@
#include "libavutil/cpu.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "libxvid_internal.h"
#include "libxvid.h"
#include "mpegvideo.h"

/**

libavcodec/libxvid_internal.h → libavcodec/libxvid.h View File

@@ -18,8 +18,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef AVCODEC_LIBXVID_INTERNAL_H
#define AVCODEC_LIBXVID_INTERNAL_H
#ifndef AVCODEC_LIBXVID_H
#define AVCODEC_LIBXVID_H

/**
* @file
@@ -29,4 +29,4 @@

int ff_tempfile(const char *prefix, char **filename);

#endif /* AVCODEC_LIBXVID_INTERNAL_H */
#endif /* AVCODEC_LIBXVID_H */

+ 1
- 1
libavcodec/libxvid_rc.c View File

@@ -28,7 +28,7 @@
#endif

#include "avcodec.h"
#include "libxvid_internal.h"
#include "libxvid.h"
//#include "dsputil.h"
#include "mpegvideo.h"



Loading…
Cancel
Save