diff options
author | Josh Allmann <joshua.allmann@gmail.com> | 2010-07-01 20:12:58 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-07-01 20:12:58 +0000 |
commit | 4449df6baf245465715844ce96886600128b3a83 (patch) | |
tree | 4da520ade0f75dc8a90eb213bc0c9cde1c006ddf /libavformat/rtpdec_svq3.h | |
parent | 2b4abbd6f5f065a41d48622154cb7fd045247f2f (diff) | |
download | ffmpeg-4449df6baf245465715844ce96886600128b3a83.tar.gz |
Add RTP depacketization of SVQ3
Patch by Josh Allmann, joshua dot allmann at gmail
Originally committed as revision 23941 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpdec_svq3.h')
-rw-r--r-- | libavformat/rtpdec_svq3.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libavformat/rtpdec_svq3.h b/libavformat/rtpdec_svq3.h new file mode 100644 index 0000000000..267d4d9de0 --- /dev/null +++ b/libavformat/rtpdec_svq3.h @@ -0,0 +1,33 @@ +/* + * Sorenson-3 (SVQ3/SV3V) payload for RTP + * Copyright (c) 2010 Ronald S. Bultje + * + * 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 + */ + +#ifndef AVFORMAT_RTPDEC_SVQ3_H +#define AVFORMAT_RTPDEC_SVQ3_H + +#include "libavcodec/avcodec.h" +#include "rtpdec.h" + +/** + * Sorenson-3 RTP callbacks. + */ +extern RTPDynamicProtocolHandler ff_svq3_dynamic_handler; + +#endif /* AVFORMAT_RTPDEC_SVQ3_H */ |