[MPlayer-cvslog] r21838 - in trunk: libmpcodecs/ae_lavc.c libmpdemux/muxer_lavf.c
reimar
subversion at mplayerhq.hu
Sat Jan 6 15:40:05 CET 2007
Author: reimar
Date: Sat Jan 6 15:40:05 2007
New Revision: 21838
Modified:
trunk/libmpcodecs/ae_lavc.c
trunk/libmpdemux/muxer_lavf.c
Log:
Include libavformat/riff.h when building with static libavformat and
add and correct prototypes if not.
Modified: trunk/libmpcodecs/ae_lavc.c
==============================================================================
--- trunk/libmpcodecs/ae_lavc.c (original)
+++ trunk/libmpcodecs/ae_lavc.c Sat Jan 6 15:40:05 2007
@@ -29,8 +29,20 @@
extern int avcodec_inited;
static int compressed_frame_size = 0;
#if defined(USE_LIBAVFORMAT) || defined(USE_LIBAVFORMAT_SO)
-extern unsigned int codec_get_wav_tag(int id);
-extern const int mp_wav_tags[];
+#ifdef USE_LIBAVFORMAT_SO
+#include <ffmpeg/avformat.h>
+typedef struct CodecTag {
+ int id;
+ unsigned int tag;
+ unsigned int invalid_asf : 1;
+} CodecTag;
+unsigned int codec_get_wav_tag(int id);
+unsigned int codec_get_tag(const CodecTag *tags, int id);
+#else
+#include "libavformat/avformat.h"
+#include "libavformat/riff.h"
+#endif
+extern const CodecTag mp_wav_tags[];
#endif
static int bind_lavc(audio_encoder_t *encoder, muxer_stream_t *mux_a)
Modified: trunk/libmpdemux/muxer_lavf.c
==============================================================================
--- trunk/libmpdemux/muxer_lavf.c (original)
+++ trunk/libmpdemux/muxer_lavf.c Sat Jan 6 15:40:05 2007
@@ -19,14 +19,21 @@
#include "m_option.h"
#ifdef USE_LIBAVFORMAT_SO
#include <ffmpeg/avformat.h>
+typedef struct CodecTag {
+ int id;
+ unsigned int tag;
+ unsigned int invalid_asf : 1;
+} CodecTag;
+unsigned int codec_get_wav_tag(int id);
+enum CodecID codec_get_bmp_id(unsigned int tag);
+enum CodecID codec_get_wav_id(unsigned int tag);
+enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag);
#else
#include "avformat.h"
+#include "libavformat/riff.h"
#endif
-extern unsigned int codec_get_wav_tag(int id);
-extern enum CodecID codec_get_bmp_id(unsigned int tag);
-extern enum CodecID codec_get_wav_id(unsigned int tag);
-extern const int mp_wav_tags[];
+extern const CodecTag mp_wav_tags[];
extern char *info_name;
extern char *info_artist;
More information about the MPlayer-cvslog
mailing list