diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-21 14:06:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-21 14:06:42 +0100 |
commit | 29707f5ba6ff34b2ed89f3af0c00e1b3c01ac9b1 (patch) | |
tree | 9e2f5bf57e25ccc89adbf2a882f8d4d055a4230f /libavformat/rtp.c | |
parent | 63753186cc2766e01c6a46d06895a7742c1a768f (diff) | |
parent | a925f723a915bc0255e2673f8817af5212131763 (diff) | |
download | ffmpeg-29707f5ba6ff34b2ed89f3af0c00e1b3c01ac9b1.tar.gz |
Merge commit 'a925f723a915bc0255e2673f8817af5212131763'
* commit 'a925f723a915bc0255e2673f8817af5212131763':
rtp: Don't read priv_data unless it is allocated
flvenc: Check whether seeking back to the header succeeded
sapenc: Pass the title on to the chained muxers
Conflicts:
libavformat/flvenc.c
libavformat/sapenc.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtp.c')
-rw-r--r-- | libavformat/rtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c index ae0fd58ace..ab0af11cbb 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -97,7 +97,7 @@ int ff_rtp_get_payload_type(AVFormatContext *fmt, AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL; /* Was the payload type already specified for the RTP muxer? */ - if (ofmt && ofmt->priv_class) { + if (ofmt && ofmt->priv_class && fmt->priv_data) { int64_t payload_type; if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 && payload_type >= 0) |