diff options
author | Ryan Martell <rdm4@martellventures.com> | 2006-11-07 22:10:07 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-11-07 22:10:07 +0000 |
commit | 1d1be919ce04327dee6169d3e0382fb680157665 (patch) | |
tree | c369d9e65dd7ee819cc2dc822d41069565af0df0 /libavformat/rtp_h264.h | |
parent | abc7202f45b61ae586972618b90fe613f6d76720 (diff) | |
download | ffmpeg-1d1be919ce04327dee6169d3e0382fb680157665.tar.gz |
add support for rtp/h264 streaming
Patch by Ryan Martell % rdm4 A martellventures P com %
Original thread:
Date: Nov 6, 2006 8:56 PM
Subject: [Ffmpeg-devel] [PATCH] H.264 via RTP
Originally committed as revision 6936 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_h264.h')
-rw-r--r-- | libavformat/rtp_h264.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libavformat/rtp_h264.h b/libavformat/rtp_h264.h new file mode 100644 index 0000000000..19508574db --- /dev/null +++ b/libavformat/rtp_h264.h @@ -0,0 +1,26 @@ +/* + * RTP H264 Protocol (RFC3984) + * Copyright (c) 2006 Ryan Martell. + * + * 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_H264_H +#define RTP_H264_H + +extern RTPDynamicProtocolHandler ff_h264_dynamic_handler; +#endif /* RTP_H264_H */ |