summaryrefslogtreecommitdiff
path: root/libavformat/rtspenc.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-05-21 07:12:33 +0000
committerMartin Storsjö <martin@martin.st>2010-05-21 07:12:33 +0000
commit38d4a2177817117f13ca830e3496b08609378b0c (patch)
tree37fe620327e7d96b1f87cdd013925c02b45153fd /libavformat/rtspenc.c
parent648e41b342595ab11770ac99aa405971568d86d2 (diff)
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
Diffstat (limited to 'libavformat/rtspenc.c')
-rw-r--r--libavformat/rtspenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c
index 293baa2a38..c0436c35e0 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,