annotate rm.c @ 4638:801468f16243 libavformat

Make RTSP-MS-over-UDP negotiation work. See "[PATCH] RTSP-MS 8/15: fix RTSP-MS UDP" thread on mailinglist. Basically, UDP setup needs to be done in a particular order (first rtx on two UDP ports (one for RTP, one for RTCP), then the other streams over one, single port for all of them together). Not doing this correctly results in a "461" error (invalid transport) during setup.
author rbultje
date Tue, 03 Mar 2009 16:52:35 +0000
parents aaf07b2acb3c
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 };