]> git.sesse.net Git - vlc/commitdiff
FFMPEG_COMMON_MEMBERS => AVCODEC_COMMON_MEMBERS
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Mar 2011 22:15:15 +0000 (23:15 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Mar 2011 22:15:15 +0000 (23:15 +0100)
modules/codec/avcodec/audio.c
modules/codec/avcodec/avcodec.c
modules/codec/avcodec/avcodec.h
modules/codec/avcodec/subtitle.c
modules/codec/avcodec/video.c

index 8e35ffabe054a9d5a63a471fcffb0b6715a97638..473d0665bba4aad2bf1f6e3fa2590bde4254ee82 100644 (file)
@@ -50,7 +50,7 @@
  *****************************************************************************/
 struct decoder_sys_t
 {
-    FFMPEG_COMMON_MEMBERS
+    AVCODEC_COMMON_MEMBERS
 
     /* Temporary buffer for libavcodec */
     int     i_output_max;
index f2c416fc64e816d0a8d4faa82e1e51beb8139c69..9805ff1d8464b7e66ea75d17d871f30409f2668c 100644 (file)
@@ -59,7 +59,7 @@
 struct decoder_sys_t
 {
     /* Common part between video and audio decoder */
-    FFMPEG_COMMON_MEMBERS
+    AVCODEC_COMMON_MEMBERS
 };
 
 /****************************************************************************
index 0449f51fa6382c99e0efdb7fd7a9dcb03d35c506..8047db96a926464d44c37130a2f03a2a34007951 100644 (file)
@@ -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;  \
index 205e02b80c949977ac2b896b8611590acee35ef1..255243971bf14e4b70f8b198db9ddfc8fbff7ebb 100644 (file)
@@ -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);
index 01ab782f3690ca1e1bd43e718b4605b524ec0180..dacf915d3f4263beaaf9326f4b6fc9d3c116220b 100644 (file)
@@ -61,7 +61,7 @@
  *****************************************************************************/
 struct decoder_sys_t
 {
-    FFMPEG_COMMON_MEMBERS
+    AVCODEC_COMMON_MEMBERS
 
     /* Video decoder specific part */
     mtime_t i_pts;