From 3c47c1744ac0e02d6a5bbf3bd24308cbf2f829f4 Mon Sep 17 00:00:00 2001 From: Luca Abeni Date: Thu, 15 Jun 2006 07:36:57 +0000 Subject: [PATCH] Fix typo Originally committed as revision 5478 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtp.c b/libavformat/rtp.c index 8482a71998..67ad3efdb0 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -218,7 +218,7 @@ int rtp_get_codec_info(AVCodecContext *codec, int payload_type) { if (AVRtpPayloadTypes[payload_type].codec_id != CODEC_ID_NONE) { codec->codec_type = AVRtpPayloadTypes[payload_type].codec_type; - codec->codec_id = AVRtpPayloadTypes[payload_type].codec_type; + codec->codec_id = AVRtpPayloadTypes[payload_type].codec_id; if (AVRtpPayloadTypes[payload_type].audio_channels > 0) codec->channels = AVRtpPayloadTypes[payload_type].audio_channels; if (AVRtpPayloadTypes[payload_type].clock_rate > 0) -- GitLab