diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-01 14:03:04 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-11-02 07:58:37 +0100 |
commit | 179a5c37e070f619f14289bdc0fa66a08219eed9 (patch) | |
tree | 2713046a1df6cefc885e1411a79f8a508c784b84 /libavformat/rtpdec.h | |
parent | f70381ab9d53132be2d009d6db9649b3cad8288b (diff) | |
download | ffmpeg-179a5c37e070f619f14289bdc0fa66a08219eed9.tar.gz |
rtpdec: factorize identical code used in several handlers
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r-- | libavformat/rtpdec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 7f14aa2d68..da3680d6ab 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -202,4 +202,9 @@ int ff_parse_fmtp(AVStream *stream, PayloadContext *data, const char *p, void av_register_rtp_dynamic_payload_handlers(void); +/** + * Close the dynamic buffer and make a packet from it. + */ +int ff_rtp_finalize_packet(AVPacket *pkt, AVIOContext **dyn_buf, int stream_idx); + #endif /* AVFORMAT_RTPDEC_H */ |