Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2010-02-24 09:27:12 +0300
committerKostya Shishkov <kostya.shishkov@gmail.com>2010-02-24 09:27:12 +0300
commit43382b5f13d18c75ec284a48bd7352766810ed90 (patch)
treef52d1d38f35f640e56b17b149885555639c4f394 /libavformat/nut.h
parentc8c0ac6b2618e92e75b37fce874a5378535e5358 (diff)
Introduce metadata conversion table for NUT muxer and demuxer.
Patch by Anton Khirnov (wyskas, do no evil mail) Thread "[PATCH] nut metadata conversion table" Originally committed as revision 22015 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r--libavformat/nut.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h
index a1081ed34c..35593e97b7 100644
--- a/libavformat/nut.h
+++ b/libavformat/nut.h
@@ -27,6 +27,7 @@
//#include "libavcodec/mpegaudio.h"
#include "avformat.h"
#include "riff.h"
+#include "metadata.h"
#define MAIN_STARTCODE (0x7A561F5F04ADULL + (((uint64_t)('N'<<8) + 'M')<<48))
#define STREAM_STARTCODE (0x11405BF2F9DBULL + (((uint64_t)('N'<<8) + 'S')<<48))
@@ -112,4 +113,6 @@ void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts);
extern const Dispositions ff_nut_dispositions[];
+extern const AVMetadataConv ff_nut_metadata_conv[];
+
#endif /* AVFORMAT_NUT_H */