summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-10 13:24:59 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-10 13:24:59 +0000
commit6e0c3925d7b268150d2fafac18a0fea8a0a2e21a (patch)
tree29fcb72788a937244b330d4822f7c65d890986e5
parentcdae8067cdec8fe0db01be7dbaa86a868edb3894 (diff)
downloadmpv-6e0c3925d7b268150d2fafac18a0fea8a0a2e21a.tar.bz2
mpv-6e0c3925d7b268150d2fafac18a0fea8a0a2e21a.tar.xz
Fixed a typo and wrong varname.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1303 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/vo_gl.c2
-rw-r--r--mplayer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index 718a7f351b..10c334d1fd 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -244,7 +244,7 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
if (myximage->byte_order != LSBFirst)
#endif
{
- printf("[gl] no support fon non-native XImage byte order!\n");
+ printf("[gl] no support for non-native XImage byte order!\n");
return -1;
}
diff --git a/mplayer.c b/mplayer.c
index 365a631f69..91837cae9f 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1082,7 +1082,7 @@ if(!sh_video){
if(has_audio){
// Go through the codec.conf and find the best codec...
sh_audio->codec=NULL;
- if(audio_family!=-1) printf("Trying to force audio codec driver family %d ...\n",video_family);
+ if(audio_family!=-1) printf("Trying to force audio codec driver family %d ...\n",audio_family);
while(1){
sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1);
if(!sh_audio->codec){