2006-11-07 22:10:07 +00:00
|
|
|
/*
|
|
|
|
* RTP H264 Protocol (RFC3984)
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2006 Ryan Martell
|
2006-11-07 22:10:07 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVFORMAT_RTP_H264_H
|
|
|
|
#define AVFORMAT_RTP_H264_H
|
2006-11-07 22:10:07 +00:00
|
|
|
|
2009-02-06 10:35:52 +00:00
|
|
|
#include "rtpdec.h"
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2006-11-07 22:10:07 +00:00
|
|
|
extern RTPDynamicProtocolHandler ff_h264_dynamic_handler;
|
2008-02-19 22:07:48 +00:00
|
|
|
void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size);
|
2007-10-17 09:37:46 +00:00
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_RTP_H264_H */
|