diff rtp_aac.h @ 2550:e9c34ec665c6 libavformat

Support for AAC streaming over RTP. Fragmentation is not implemented yet
author lucabe
date Fri, 14 Sep 2007 08:17:06 +0000
parents
children 792383dd085e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rtp_aac.h	Fri Sep 14 08:17:06 2007 +0000
@@ -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 */