libavformat/metadata.h
47146dfb
 /*
  * copyright (c) 2009 Michael Niedermayer
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
a6d18a0e
 #ifndef AVFORMAT_METADATA_H
 #define AVFORMAT_METADATA_H
47146dfb
 
 /**
bad5537e
  * @file libavformat/metadata.h
47146dfb
  * internal metadata API header
a6d18a0e
  * see avformat.h or the public API!
47146dfb
  */
 
 
a6d18a0e
 #include "avformat.h"
47146dfb
 
bc1d2afb
 struct AVMetadata{
47146dfb
     int count;
bc1d2afb
     AVMetadataTag *elems;
47146dfb
 };
 
f610a9f2
 struct AVMetadataConv{
     const char *native;
     const char *generic;
 };
 
176aee82
 #if LIBAVFORMAT_VERSION_MAJOR < 53
e99f76ab
 void ff_metadata_demux_compat(AVFormatContext *s);
5ce00433
 void ff_metadata_mux_compat(AVFormatContext *s);
176aee82
 #endif
 
a6d18a0e
 #endif /* AVFORMAT_METADATA_H */