annotate rtpdec_theora.h @ 5899:d80731fed8ee libavformat

Document the behavior of av_metadata_get() if the prev parameter is NULL.
author stefano
date Sat, 27 Mar 2010 21:14:16 +0000
parents 38b67ae3f07d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5866
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
1 /*
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
2 * RTP Theora Protocol.
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
3 * Based off RFC 5215 (Vorbis RTP) and the Theora RTP draft.
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
4 * Copyright (c) 2010 Josh Allmann
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
5 *
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
6 * This file is part of FFmpeg.
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
7 *
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
8 * FFmpeg is free software; you can redistribute it and/or
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
9 * modify it under the terms of the GNU Lesser General Public
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
10 * License as published by the Free Software Foundation; either
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
11 * version 2.1 of the License, or (at your option) any later version.
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
12 *
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
13 * FFmpeg is distributed in the hope that it will be useful,
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
16 * Lesser General Public License for more details.
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
17 *
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
19 * License along with FFmpeg; if not, write to the Free Software
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
21 */
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
22
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
23 #ifndef AVFORMAT_RTPDEC_THEORA_H
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
24 #define AVFORMAT_RTPDEC_THEORA_H
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
25
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
26 #include "libavcodec/avcodec.h"
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
27 #include "rtpdec.h"
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
28
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
29 /**
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
30 * Theora RTP callbacks.
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
31 */
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
32 extern RTPDynamicProtocolHandler ff_theora_dynamic_handler;
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
33
38b67ae3f07d RTP depacketization of Theora
mstorsjo
parents:
diff changeset
34 #endif /* AVFORMAT_RTPDEC_THEORA_H */