annotate rm.c @ 4522:aaf07b2acb3c libavformat

use new metadata API in rm (de)muxer
author aurel
date Tue, 17 Feb 2009 21:40:38 +0000
parents
children 17ad184d14be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4522
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
1 /*
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
2 * "Real" compatible muxer and demuxer common code.
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
3 * Copyright (c) 2009 Aurelien Jacobs <aurel@gnuage.org>
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
4 *
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
5 * This file is part of FFmpeg.
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
6 *
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
11 *
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
15 * Lesser General Public License for more details.
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
16 *
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
20 */
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
21
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
22 #include "rm.h"
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
23
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
24 const char *ff_rm_metadata[4] = {
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
25 "title",
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
26 "author",
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
27 "copyright",
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
28 "comment"
aaf07b2acb3c use new metadata API in rm (de)muxer
aurel
parents:
diff changeset
29 };