comparison libao2/ao_mpegpes.c @ 25962:afa125da85cf

typo fix: inited --> initialized
author diego
date Thu, 14 Feb 2008 14:23:55 +0000
parents 634dfaa85718
children a50cc6945dfd
comparison
equal deleted inserted replaced
25961:354ad909efcf 25962:afa125da85cf
125 if((ioctl(vo_mpegpes_fd2,AUDIO_SET_AV_SYNC, true) < 0)) 125 if((ioctl(vo_mpegpes_fd2,AUDIO_SET_AV_SYNC, true) < 0))
126 { 126 {
127 mp_msg(MSGT_VO, MSGL_ERR, "DVB AUDIO SET AV SYNC: %s\n", strerror(errno)); 127 mp_msg(MSGT_VO, MSGL_ERR, "DVB AUDIO SET AV SYNC: %s\n", strerror(errno));
128 return -1; 128 return -1;
129 } 129 }
130 //FIXME: in vo_mpegpes audio was inited as MUTEd 130 //FIXME: in vo_mpegpes audio was initialized as MUTEd
131 if((ioctl(vo_mpegpes_fd2,AUDIO_SET_MUTE, false) < 0)) 131 if((ioctl(vo_mpegpes_fd2,AUDIO_SET_MUTE, false) < 0))
132 { 132 {
133 mp_msg(MSGT_VO, MSGL_ERR, "DVB AUDIO SET MUTE: %s\n", strerror(errno)); 133 mp_msg(MSGT_VO, MSGL_ERR, "DVB AUDIO SET MUTE: %s\n", strerror(errno));
134 return -1; 134 return -1;
135 } 135 }