diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 22:42:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 22:42:04 +0100 |
commit | 48e3cd4fcd49cd7663f56611e20abb5a860caeaa (patch) | |
tree | 9ce9f896a3f8c4028b7b4816e704ee877e77c31e /libavformat/rtpdec.h | |
parent | 11fb6258582d31bebf50ae02fbc301bbac613c2d (diff) | |
parent | e72605f80bf5cbe32053a554ccc137e0a99cf3dd (diff) | |
download | ffmpeg-48e3cd4fcd49cd7663f56611e20abb5a860caeaa.tar.gz |
Merge commit 'e72605f80bf5cbe32053a554ccc137e0a99cf3dd'
* commit 'e72605f80bf5cbe32053a554ccc137e0a99cf3dd':
rtpdec: Allow allocating and freeing the private data without explicit functions
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r-- | libavformat/rtpdec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 3de3e7dc01..b950160c45 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -120,6 +120,7 @@ struct RTPDynamicProtocolHandler { int static_payload_id; /* 0 means no payload id is set. 0 is a valid * payload ID (PCMU), too, but that format doesn't * require any custom depacketization code. */ + int priv_data_size; /** Initialize dynamic protocol handler, called after the full rtpmap line is parsed, may be null */ int (*init)(AVFormatContext *s, int st_index, PayloadContext *priv_data); |