diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-17 21:40:38 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-17 21:40:38 +0000 |
commit | 7379d5bc0be5a1babfce8cd518c2329f05af3087 (patch) | |
tree | f63f011c3707565dea3f03c23fbeb41faf9c9845 /libavformat/rm.c | |
parent | 6c25f346820b1ec00982e857aec23be0ece47856 (diff) | |
download | ffmpeg-7379d5bc0be5a1babfce8cd518c2329f05af3087.tar.gz |
use new metadata API in rm (de)muxer
Originally committed as revision 17396 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.c')
-rw-r--r-- | libavformat/rm.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libavformat/rm.c b/libavformat/rm.c new file mode 100644 index 0000000000..9911aac91e --- /dev/null +++ b/libavformat/rm.c @@ -0,0 +1,29 @@ +/* + * "Real" compatible muxer and demuxer common code. + * Copyright (c) 2009 Aurelien Jacobs <aurel@gnuage.org> + * + * 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 + */ + +#include "rm.h" + +const char *ff_rm_metadata[4] = { + "title", + "author", + "copyright", + "comment" +}; |