diff options
author | Luca Abeni <lucabe72@email.it> | 2007-09-14 08:17:06 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2007-09-14 08:17:06 +0000 |
commit | 171dce486ce85fbb6a54e24394e1d740395437b0 (patch) | |
tree | 56c85d4e9ec26692446297bf5b7b2208764093f9 /libavformat/rtp_aac.h | |
parent | f0dd9d4505675daa0f4fda6fcf4274416a23bf24 (diff) | |
download | ffmpeg-171dce486ce85fbb6a54e24394e1d740395437b0.tar.gz |
Support for AAC streaming over RTP. Fragmentation is not implemented yet
Originally committed as revision 10491 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_aac.h')
-rw-r--r-- | libavformat/rtp_aac.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libavformat/rtp_aac.h b/libavformat/rtp_aac.h new file mode 100644 index 0000000000..caa65907cc --- /dev/null +++ b/libavformat/rtp_aac.h @@ -0,0 +1,25 @@ +/* + * RTP definitions + * + * 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 RTP_AAC_H +#define RTP_AAC_H + +void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size); + +#endif /* RTP_AAC_H */ |