Commit 75ea2f23 authored by rbultje's avatar rbultje

Add void to a function prototype that takes no arguments. Fixes a potential

compiler warning.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22803 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ed2797ee
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment