summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_viv.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/demux_viv.c')
-rw-r--r--libmpdemux/demux_viv.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libmpdemux/demux_viv.c b/libmpdemux/demux_viv.c
index b642ee761f..d628a09d3c 100644
--- a/libmpdemux/demux_viv.c
+++ b/libmpdemux/demux_viv.c
@@ -27,7 +27,6 @@
#include "config.h"
#include "mp_msg.h"
-#include "help_mp.h"
#include "stream/stream.h"
#include "demuxer.h"
@@ -562,7 +561,8 @@ static demuxer_t* demux_open_vivo(demuxer_t* demuxer){
vivo_priv_t* priv=demuxer->priv;
if(!ds_fill_buffer(demuxer->video)){
- mp_msg(MSGT_DEMUX,MSGL_ERR,"VIVO: " MSGTR_MissingVideoStreamBug);
+ mp_msg(MSGT_DEMUX, MSGL_ERR, "VIVO: %s",
+ mp_gtext("Missing video stream!? Contact the author, it may be a bug :(\n"));
return NULL;
}
@@ -645,7 +645,8 @@ static demuxer_t* demux_open_vivo(demuxer_t* demuxer){
/* AUDIO init */
if (demuxer->audio->id >= -1){
if(!ds_fill_buffer(demuxer->audio)){
- mp_msg(MSGT_DEMUX,MSGL_ERR,"VIVO: " MSGTR_MissingAudioStream);
+ mp_msg(MSGT_DEMUX, MSGL_ERR, "VIVO: %s",
+ mp_gtext("No audio stream found -> no sound.\n"));
} else
{ sh_audio_t* sh=new_sh_audio(demuxer,1);