diff options
author | Ronald S. Bultje | 2010-04-05 16:13:51 +0000 |
---|---|---|
committer | Ronald S. Bultje | 2010-04-05 16:13:51 +0000 |
commit | 1da1e1933fe3e8e65e0591b143653c42436c937a (patch) | |
tree | 323c22ae282e12f89374803d83645c32ff87102d /libavformat/rtpdec.h | |
parent | 0e1f78f90b7114abd6537cac6d2351450869dbaa (diff) |
Add void to a function prototype that takes no arguments. Fixes a potential
compiler warning.
Originally committed as revision 22803 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r-- | libavformat/rtpdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 366102af99..1e56e9e40a 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -140,7 +140,7 @@ struct RTPDynamicProtocolHandler_s { int st_index, PayloadContext *priv_data, const char *line); ///< Parse the a= line from the sdp field - PayloadContext *(*open) (); ///< allocate any data needed by the rtp parsing for this dynamic data. + PayloadContext *(*open) (void); ///< allocate any data needed by the rtp parsing for this dynamic data. void (*close)(PayloadContext *protocol_data); ///< free any data needed by the rtp parsing for this dynamic data. DynamicPayloadPacketHandlerProc parse_packet; ///< parse handler for this dynamic packet. |