Commit b0a880b3 authored by Luca Abeni's avatar Luca Abeni

Document ff_rtp_get_payload_type()

Originally committed as revision 17365 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0550b58f
......@@ -23,7 +23,14 @@
#include "libavcodec/avcodec.h"
/** return < 0 if unknown payload type */
/**
* Return the payload type for a given codec.
*
* @param codec The context of the codec
* @return In case of unknown payload type or dynamic payload type, a
* negative value is returned; otherwise, the payload type (the 'PT' field
* in the RTP header) is returned.
*/
int ff_rtp_get_payload_type(AVCodecContext *codec);
#define RTP_PT_PRIVATE 96
......
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