summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorib <ib@b3059339-0415-0410-9bf9-f77b7e298cf2>2011-05-11 11:35:38 +0000
committerUoti Urpala <uau@mplayer2.org>2011-06-29 11:01:31 +0300
commit96c992de47abffd66dda6e94e4093552f7528472 (patch)
tree6f52bb3a73ff9536272cb0c165a175ee58d07a24 /stream
parent2c7488fe913a19254c2a92e20032a6181f62e1cf (diff)
downloadmpv-96c992de47abffd66dda6e94e4093552f7528472.tar.bz2
mpv-96c992de47abffd66dda6e94e4093552f7528472.tar.xz
stream.c: make some stream messages translatable
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33454 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/stream.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/stream/stream.c b/stream/stream.c
index fde102759c..4b55072561 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -167,7 +167,7 @@ static stream_t *open_stream_plugin(const stream_info_t *sinfo,
m_option_t url_opt =
{ "stream url", arg , CONF_TYPE_CUSTOM_URL, 0, 0 ,0, (void *)sinfo->opts };
if(m_option_parse(&url_opt,"stream url",filename,arg,M_CONFIG_FILE) < 0) {
- mp_msg(MSGT_OPEN,MSGL_ERR, "URL parsing failed on url %s\n",filename);
+ mp_tmsg(MSGT_OPEN,MSGL_ERR, "URL parsing failed on url %s\n",filename);
m_struct_free(desc,arg);
return NULL;
}
@@ -251,7 +251,7 @@ stream_t *open_stream_full(const char *filename, int mode,
}
}
- mp_msg(MSGT_OPEN,MSGL_ERR, "No stream found to handle url %s\n",filename);
+ mp_tmsg(MSGT_OPEN,MSGL_ERR, "No stream found to handle url %s\n", filename);
return NULL;
}
@@ -365,7 +365,7 @@ if(newpos==0 || newpos!=s->pos){
#ifdef CONFIG_NETWORKING
if(s->seek) { // new stream seek is much cleaner than streaming_ctrl one
if(!s->seek(s,newpos)) {
- mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n");
+ mp_tmsg(MSGT_STREAM,MSGL_ERR, "Seek failed\n");
return 0;
}
break;
@@ -373,14 +373,15 @@ if(newpos==0 || newpos!=s->pos){
if( s->streaming_ctrl!=NULL && s->streaming_ctrl->streaming_seek ) {
if( s->streaming_ctrl->streaming_seek( s->fd, newpos, s->streaming_ctrl )<0 ) {
- mp_msg(MSGT_STREAM,MSGL_INFO,"Stream not seekable!\n");
+ mp_tmsg(MSGT_STREAM,MSGL_INFO,"Stream not seekable!\n");
return 1;
}
break;
}
#endif
if(newpos<s->pos){
- mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n");
+ mp_tmsg(MSGT_STREAM, MSGL_INFO,
+ "Cannot seek backward in linear streams!\n");
return 1;
}
break;
@@ -390,7 +391,7 @@ if(newpos==0 || newpos!=s->pos){
return 0;
// Now seek
if(!s->seek(s,newpos)) {
- mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n");
+ mp_tmsg(MSGT_STREAM,MSGL_ERR, "Seek failed\n");
return 0;
}
}