diff options
author | Josh Allmann <joshua.allmann@gmail.com> | 2010-06-25 08:02:50 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-25 08:02:50 +0000 |
commit | ca937a5508ab6054ca4d6969232afcdcad39f701 (patch) | |
tree | ce5bbad503a701f53ca8994944929397aaab0dc6 /libavformat/rtsp.c | |
parent | 73e6c53e64836ef89532a98caae0f6d00027cd61 (diff) | |
download | ffmpeg-ca937a5508ab6054ca4d6969232afcdcad39f701.tar.gz |
RTSP, rtpdec: Move RTPPayloadData into rtpdec_mpeg4 and remove all references to rtp_payload_data in rtpdec and rtsp
Patch by Josh Allmann, joshua dot allmann at gmail
Originally committed as revision 23772 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 964144b3c6..bca3bd26fb 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -561,8 +561,7 @@ static int rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st) rtsp_st->dynamic_handler); else rtsp_st->transport_priv = rtp_parse_open(s, st, rtsp_st->rtp_handle, - rtsp_st->sdp_payload_type, - &rtsp_st->rtp_payload_data); + rtsp_st->sdp_payload_type); if (!rtsp_st->transport_priv) { return AVERROR(ENOMEM); |