]> git.sesse.net Git - ffmpeg/commitdiff
rtpenc: Set a default video codec
authorMartin Storsjö <martin@martin.st>
Mon, 17 Oct 2011 18:11:07 +0000 (21:11 +0300)
committerMartin Storsjö <martin@martin.st>
Mon, 17 Oct 2011 19:02:20 +0000 (22:02 +0300)
avconv doesn't map video streams to a muxer without specifying a
manual stream mapping if the default video codec is CODEC_ID_NONE.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpenc.c

index 165e4449c7433fa0ee888112ae3e1df675184a44..dfd7461d1836553af9b284a3a09af8a8bb153e1f 100644 (file)
@@ -465,7 +465,7 @@ AVOutputFormat ff_rtp_muxer = {
     .long_name         = NULL_IF_CONFIG_SMALL("RTP output format"),
     .priv_data_size    = sizeof(RTPMuxContext),
     .audio_codec       = CODEC_ID_PCM_MULAW,
-    .video_codec       = CODEC_ID_NONE,
+    .video_codec       = CODEC_ID_MPEG4,
     .write_header      = rtp_write_header,
     .write_packet      = rtp_write_packet,
     .write_trailer     = rtp_write_trailer,