annotate rtpdec_svq3.h @ 6262:7b8b71ff9a76 libavformat

Move SPACE_CHARS back to libavformat/internal.h It will be used by other parts of lavf now. This reverts svn rev 23846.
author mstorsjo
date Fri, 16 Jul 2010 14:12:52 +0000
parents 209c43ef17af
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6208
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
1 /*
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
2 * Sorenson-3 (SVQ3/SV3V) payload for RTP
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
3 * Copyright (c) 2010 Ronald S. Bultje
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
4 *
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
5 * This file is part of FFmpeg.
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
6 *
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
11 *
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
15 * Lesser General Public License for more details.
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
16 *
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
20 */
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
21
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
22 #ifndef AVFORMAT_RTPDEC_SVQ3_H
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
23 #define AVFORMAT_RTPDEC_SVQ3_H
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
24
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
25 #include "libavcodec/avcodec.h"
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
26 #include "rtpdec.h"
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
27
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
28 /**
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
29 * Sorenson-3 RTP callbacks.
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
30 */
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
31 extern RTPDynamicProtocolHandler ff_svq3_dynamic_handler;
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
32
209c43ef17af Add RTP depacketization of SVQ3
mstorsjo
parents:
diff changeset
33 #endif /* AVFORMAT_RTPDEC_SVQ3_H */