[vlc-commits] FFMPEG_COMMON_MEMBERS => AVCODEC_COMMON_MEMBERS
Jean-Baptiste Kempf
git at videolan.org
Wed Mar 16 23:18:56 CET 2011
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Mar 16 23:15:15 2011 +0100| [4c35990dab671828c5ef9470f097a8a0f33bf805] | committer: Jean-Baptiste Kempf
FFMPEG_COMMON_MEMBERS => AVCODEC_COMMON_MEMBERS
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4c35990dab671828c5ef9470f097a8a0f33bf805
---
modules/codec/avcodec/audio.c | 2 +-
modules/codec/avcodec/avcodec.c | 2 +-
modules/codec/avcodec/avcodec.h | 2 +-
modules/codec/avcodec/subtitle.c | 2 +-
modules/codec/avcodec/video.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c
index 8e35ffa..473d066 100644
--- a/modules/codec/avcodec/audio.c
+++ b/modules/codec/avcodec/audio.c
@@ -50,7 +50,7 @@
*****************************************************************************/
struct decoder_sys_t
{
- FFMPEG_COMMON_MEMBERS
+ AVCODEC_COMMON_MEMBERS
/* Temporary buffer for libavcodec */
int i_output_max;
diff --git a/modules/codec/avcodec/avcodec.c b/modules/codec/avcodec/avcodec.c
index f2c416f..9805ff1 100644
--- a/modules/codec/avcodec/avcodec.c
+++ b/modules/codec/avcodec/avcodec.c
@@ -59,7 +59,7 @@
struct decoder_sys_t
{
/* Common part between video and audio decoder */
- FFMPEG_COMMON_MEMBERS
+ AVCODEC_COMMON_MEMBERS
};
/****************************************************************************
diff --git a/modules/codec/avcodec/avcodec.h b/modules/codec/avcodec/avcodec.h
index 0449f51..8047db9 100644
--- a/modules/codec/avcodec/avcodec.h
+++ b/modules/codec/avcodec/avcodec.h
@@ -256,7 +256,7 @@ int ffmpeg_OpenCodec( decoder_t *p_dec );
"for encoding the audio bitstream. It takes the following options: " \
"main, low, ssr (not supported) and ltp (default: main)" )
-#define FFMPEG_COMMON_MEMBERS \
+#define AVCODEC_COMMON_MEMBERS \
int i_cat; \
int i_codec_id; \
const char *psz_namecodec; \
diff --git a/modules/codec/avcodec/subtitle.c b/modules/codec/avcodec/subtitle.c
index 205e02b..2552439 100644
--- a/modules/codec/avcodec/subtitle.c
+++ b/modules/codec/avcodec/subtitle.c
@@ -50,7 +50,7 @@
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 25, 0 )
struct decoder_sys_t {
- FFMPEG_COMMON_MEMBERS
+ AVCODEC_COMMON_MEMBERS
};
static subpicture_t *ConvertSubtitle(decoder_t *, AVSubtitle *, mtime_t pts);
diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 01ab782..dacf915 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -61,7 +61,7 @@
*****************************************************************************/
struct decoder_sys_t
{
- FFMPEG_COMMON_MEMBERS
+ AVCODEC_COMMON_MEMBERS
/* Video decoder specific part */
mtime_t i_pts;
More information about the vlc-commits
mailing list