rtp: Don't read priv_data unless it is allocated
This makes all users of rtpenc_chain (rtsp muxer, sapenc, mov
rtp hinting) work again, broken since 8034130e0
.
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -97,7 +97,7 @@ int ff_rtp_get_payload_type(AVFormatContext *fmt,
|
|||||||
AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
|
AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
|
||||||
|
|
||||||
/* Was the payload type already specified for the RTP muxer? */
|
/* 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;
|
int64_t payload_type;
|
||||||
if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
|
if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
|
||||||
payload_type >= 0)
|
payload_type >= 0)
|
||||||
|
Reference in New Issue
Block a user