From 38d4a2177817117f13ca830e3496b08609378b0c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
Date: Fri, 21 May 2010 07:12:33 +0000
Subject: [PATCH] Change the default codecs for the rtsp muxer to mpeg4 and aac

These codecs in RTP are supported by many players.

Originally committed as revision 23209 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/rtspenc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c
index 293baa2a380..c0436c35e08 100644
--- a/libavformat/rtspenc.c
+++ b/libavformat/rtspenc.c
@@ -168,8 +168,8 @@ AVOutputFormat rtsp_muxer = {
     NULL,
     NULL,
     sizeof(RTSPState),
-    CODEC_ID_PCM_MULAW,
-    CODEC_ID_NONE,
+    CODEC_ID_AAC,
+    CODEC_ID_MPEG4,
     rtsp_write_header,
     rtsp_write_packet,
     rtsp_write_close,
-- 
GitLab