Browse Source

Revert adding a _pixfmt to vdpau/xvmc header names.

Since vdpau.h was an installed header this would break API.

Originally committed as revision 17225 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 16 years ago
parent
commit
fd949a6353
5 changed files with 4 additions and 4 deletions
  1. +1
    -1
      libavcodec/Makefile
  2. +1
    -1
      libavcodec/vdpau.c
  3. +0
    -0
      libavcodec/vdpau.h
  4. +2
    -2
      libavcodec/xvmc.c
  5. +0
    -0
      libavcodec/xvmc.h

+ 1
- 1
libavcodec/Makefile View File

@@ -3,7 +3,7 @@ include $(SUBDIR)../config.mak
NAME = avcodec
FFLIBS = avutil

HEADERS = avcodec.h opt.h vdpau_pixfmt.h
HEADERS = avcodec.h opt.h vdpau.h

OBJS = allcodecs.o \
audioconvert.o \


+ 1
- 1
libavcodec/vdpau.c View File

@@ -29,7 +29,7 @@
#undef NDEBUG
#include <assert.h>

#include "vdpau_pixfmt.h"
#include "vdpau.h"
#include "vdpau_internal.h"

/**


libavcodec/vdpau_pixfmt.h → libavcodec/vdpau.h View File


+ 2
- 2
libavcodec/xvmc.c View File

@@ -29,11 +29,11 @@
#undef NDEBUG
#include <assert.h>

//X11 includes are in xvmc_pixfmt.h
//X11 includes are in libavcodec/xvmc.h
//by replacing it with non-X one
//XvMC emulation could be performed

#include "xvmc_pixfmt.h"
#include "xvmc.h"

//#include "xvmc_debug.h"



libavcodec/xvmc_pixfmt.h → libavcodec/xvmc.h View File


Loading…
Cancel
Save