summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_lmlm4.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/demux_lmlm4.c')
-rw-r--r--libmpdemux/demux_lmlm4.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libmpdemux/demux_lmlm4.c b/libmpdemux/demux_lmlm4.c
index 9657db2f1a..46bb167ef1 100644
--- a/libmpdemux/demux_lmlm4.c
+++ b/libmpdemux/demux_lmlm4.c
@@ -27,7 +27,6 @@
#include "config.h"
#include "mp_msg.h"
-#include "help_mp.h"
#include "stream/stream.h"
#include "demuxer.h"
@@ -344,14 +343,16 @@ static demuxer_t* demux_open_lmlm4(demuxer_t* demuxer){
demuxer->seekable = 0;
if(!ds_fill_buffer(demuxer->video)){
- mp_msg(MSGT_DEMUXER,MSGL_INFO,"LMLM4: " MSGTR_MissingVideoStream);
+ mp_msg(MSGT_DEMUXER, MSGL_INFO, "LMLM4: %s",
+ mp_gtext("No video stream found.\n"));
demuxer->video->sh=NULL;
} else {
sh_video=demuxer->video->sh;sh_video->ds=demuxer->video;
}
if(demuxer->audio->id!=-2) {
if(!ds_fill_buffer(demuxer->audio)){
- mp_msg(MSGT_DEMUXER,MSGL_INFO,"LMLM4: " MSGTR_MissingAudioStream);
+ mp_msg(MSGT_DEMUXER, MSGL_INFO, "LMLM4: %s",
+ mp_gtext("No audio stream found -> no sound.\n"));
demuxer->audio->sh=NULL;
} else {
sh_audio=demuxer->audio->sh;sh_audio->ds=demuxer->audio;