summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-09 11:41:56 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-09 11:42:01 +0100
commit8c3ae9ee66a2fb094b188c994a18df9f3e69a283 (patch)
tree862215cb8df2cbbb8bc2f11f73b642e7f3c8b708 /libavformat/rtpdec.h
parent7b822b1de2eaae56b11b7bfe0d6768723ac67200 (diff)
parent42805eda554a7fc44341282771531e7837ac72b7 (diff)
Merge commit '42805eda554a7fc44341282771531e7837ac72b7'
* commit '42805eda554a7fc44341282771531e7837ac72b7': rtpdec: Store the dynamic payload handler in the rtpdec context Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r--libavformat/rtpdec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h
index d7ade3bb41..3023cee8bf 100644
--- a/libavformat/rtpdec.h
+++ b/libavformat/rtpdec.h
@@ -184,7 +184,7 @@ struct RTPDemuxContext {
uint8_t buf[RTP_MAX_PACKET_LENGTH];
/* dynamic payload stuff */
- DynamicPayloadPacketHandlerProc parse_packet;
+ const RTPDynamicProtocolHandler *handler;
PayloadContext *dynamic_protocol_context;
};