summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-24 22:42:00 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-24 22:42:04 +0100
commit48e3cd4fcd49cd7663f56611e20abb5a860caeaa (patch)
tree9ce9f896a3f8c4028b7b4816e704ee877e77c31e /libavformat/rtpdec.h
parent11fb6258582d31bebf50ae02fbc301bbac613c2d (diff)
parente72605f80bf5cbe32053a554ccc137e0a99cf3dd (diff)
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.h1
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);