]> git.sesse.net Git - vlc/commitdiff
transcode: add clue to check earlier log-messages when encoder wasn't found
authorIlkka Ollakka <ileoo@videolan.org>
Thu, 20 May 2010 13:33:52 +0000 (16:33 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Thu, 20 May 2010 13:33:52 +0000 (16:33 +0300)
modules/stream_out/transcode/audio.c
modules/stream_out/transcode/video.c

index 9fe7b85809d725e4e045fc0354267c47630634a2..5f7530ef4ca2f8510255a5882b118f465674aae0 100644 (file)
@@ -266,7 +266,7 @@ int transcode_audio_new( sout_stream_t *p_stream,
         module_need( id->p_encoder, "encoder", p_sys->psz_aenc, true );
     if( !id->p_encoder->p_module )
     {
-        msg_Err( p_stream, "cannot find audio encoder (module:%s fourcc:%4.4s)",
+        msg_Err( p_stream, "cannot find audio encoder (module:%s fourcc:%4.4s). Take a look few lines earlier to see possible reason.",
                  p_sys->psz_aenc ? p_sys->psz_aenc : "any",
                  (char *)&p_sys->i_acodec );
         module_unneed( id->p_decoder, id->p_decoder->p_module );
index b0f167d27b3319d1a26ee1cd72d6a72d554e42c4..1956c6507a6e008ba2ed8bdd4ebf644832b9a99a 100644 (file)
@@ -242,7 +242,7 @@ int transcode_video_new( sout_stream_t *p_stream, sout_stream_id_t *id )
         module_need( id->p_encoder, "encoder", p_sys->psz_venc, true );
     if( !id->p_encoder->p_module )
     {
-        msg_Err( p_stream, "cannot find video encoder (module:%s fourcc:%4.4s)",
+        msg_Err( p_stream, "cannot find video encoder (module:%s fourcc:%4.4s). Take a look few lines earlier to see possible reason.",
                  p_sys->psz_venc ? p_sys->psz_venc : "any",
                  (char *)&p_sys->i_vcodec );
         module_unneed( id->p_decoder, id->p_decoder->p_module );