2 * MPEG-PES audio output driver
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <sys/types.h>
35 #include <sys/ioctl.h>
38 #include "audio_out.h"
39 #include "audio_out_internal.h"
41 #include "libaf/af_format.h"
42 #include "libmpdemux/mpeg_packetizer.h"
43 #include "subopt-helper.h"
49 #ifndef CONFIG_DVB_HEAD
50 #include <ost/audio.h>
51 audioMixer_t dvb_mixer
={255,255};
53 #include <linux/dvb/audio.h>
54 audio_mixer_t dvb_mixer
={255,255};
61 extern int vo_mpegpes_fd
;
62 int vo_mpegpes_fd2
= -1;
66 static const ao_info_t info
=
71 "MPEG-PES audio output",
81 // to set/get/query special features/parameters
82 static int control(int cmd
,void *arg
){
85 case AOCONTROL_GET_VOLUME
:
86 if(vo_mpegpes_fd2
>=0){
87 ((ao_control_vol_t
*)(arg
))->left
=dvb_mixer
.volume_left
/2.56;
88 ((ao_control_vol_t
*)(arg
))->right
=dvb_mixer
.volume_right
/2.56;
92 case AOCONTROL_SET_VOLUME
:
93 if(vo_mpegpes_fd2
>=0){
94 dvb_mixer
.volume_left
=((ao_control_vol_t
*)(arg
))->left
*2.56;
95 dvb_mixer
.volume_right
=((ao_control_vol_t
*)(arg
))->right
*2.56;
96 if(dvb_mixer
.volume_left
>255) dvb_mixer
.volume_left
=255;
97 if(dvb_mixer
.volume_right
>255) dvb_mixer
.volume_right
=255;
98 // printf("Setting DVB volume: %d ; %d \n",dvb_mixer.volume_left,dvb_mixer.volume_right);
99 if ( (ioctl(vo_mpegpes_fd2
,AUDIO_SET_MIXER
, &dvb_mixer
) < 0)){
100 mp_tmsg(MSGT_AO
, MSGL_ERR
, "[AO MPEGPES] DVB audio set mixer failed: %s.\n",
102 return CONTROL_ERROR
;
106 return CONTROL_ERROR
;
109 return CONTROL_UNKNOWN
;
113 static int freq_id
=0;
116 static int init_device(int card
)
119 #ifndef CONFIG_DVB_HEAD
120 mp_msg(MSGT_VO
,MSGL_INFO
, "Opening /dev/ost/audio\n");
121 sprintf(ao_file
, "/dev/ost/audio");
123 mp_msg(MSGT_VO
,MSGL_INFO
, "Opening /dev/dvb/adapter%d/audio0\n", card
);
124 sprintf(ao_file
, "/dev/dvb/adapter%d/audio0", card
);
126 if((vo_mpegpes_fd2
= open(ao_file
,O_RDWR
|O_NONBLOCK
)) < 0)
128 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB AUDIO DEVICE: %s\n", strerror(errno
));
131 if( (ioctl(vo_mpegpes_fd2
,AUDIO_SELECT_SOURCE
, AUDIO_SOURCE_MEMORY
) < 0))
133 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB AUDIO SELECT SOURCE: %s\n", strerror(errno
));
136 if((ioctl(vo_mpegpes_fd2
,AUDIO_PLAY
) < 0))
138 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB AUDIO PLAY: %s\n", strerror(errno
));
141 if((ioctl(vo_mpegpes_fd2
,AUDIO_SET_AV_SYNC
, true) < 0))
143 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB AUDIO SET AV SYNC: %s\n", strerror(errno
));
146 //FIXME: in vo_mpegpes audio was initialized as MUTEd
147 if((ioctl(vo_mpegpes_fd2
,AUDIO_SET_MUTE
, false) < 0))
149 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB AUDIO SET MUTE: %s\n", strerror(errno
));
152 return vo_mpegpes_fd2
;
156 static int preinit(const char *arg
)
159 char *ao_file
= NULL
;
161 const opt_t subopts
[] = {
162 {"card", OPT_ARG_INT
, &card
, NULL
},
163 {"file", OPT_ARG_MSTRZ
, &ao_file
, NULL
},
167 if(subopt_parse(ao_subdevice
, subopts
) != 0)
169 mp_msg(MSGT_VO
, MSGL_ERR
, "AO_MPEGPES, Unrecognized options\n");
174 //search the first usable card
179 sprintf(file
, "/dev/dvb/adapter%d/audio0", n
);
180 if(access(file
, F_OK
| W_OK
)==0)
187 if((card
< 1) || (card
> 4))
189 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB card number must be between 1 and 4\n");
196 return init_device(card
);
199 return vo_mpegpes_fd
; //video fd
202 vo_mpegpes_fd2
=open(ao_file
,O_WRONLY
|O_CREAT
,0666);
205 mp_msg(MSGT_VO
, MSGL_ERR
, "ao_mpegpes: %s\n", strerror(errno
));
208 return vo_mpegpes_fd2
;
211 static int my_ao_write(const unsigned char* data
,int len
){
215 struct pollfd pfd
[NFD
];
217 pfd
[0].fd
= vo_mpegpes_fd2
;
218 pfd
[0].events
= POLLOUT
;
222 if(pfd
[0].revents
& POLLOUT
){
223 int ret
=write(vo_mpegpes_fd2
,data
,len
);
225 mp_msg(MSGT_VO
, MSGL_ERR
, "ao_mpegpes write: %s\n", strerror(errno
));
236 if(vo_mpegpes_fd2
<0) return 0; // no file
237 write(vo_mpegpes_fd2
,data
,len
); // write to file
243 // open & setup audio device
244 // return: 1=success 0=fail
245 static int init(int rate
,int channels
,int format
,int flags
){
246 if(preinit(NULL
)<0) return 0;
249 ao_data
.outburst
=2000;
251 case AF_FORMAT_S16_BE
:
252 case AF_FORMAT_MPEG2
:
254 ao_data
.format
=format
;
257 ao_data
.format
=AF_FORMAT_S16_BE
;
261 case 48000: freq_id
=0;break;
262 case 96000: freq_id
=1;break;
263 case 44100: freq_id
=2;break;
264 case 32000: freq_id
=3;break;
266 mp_tmsg(MSGT_AO
, MSGL_ERR
, "[AO MPEGPES] %d Hz not supported, try to resample.\n", rate
);
268 if(rate
>48000) rate
=96000; else
269 if(rate
>44100) rate
=48000; else
270 if(rate
>32000) rate
=44100; else
274 rate
=48000; freq_id
=0;
278 ao_data
.bps
=rate
*2*2;
279 freq
=ao_data
.samplerate
=rate
;
284 // close audio device
285 static void uninit(int immed
){
289 // stop playing and empty buffers (for seeking/pause)
290 static void reset(void){
294 // stop playing, keep buffers (for pause)
295 static void audio_pause(void)
297 // for now, just call reset();
301 // resume playing, after audio_pause()
302 static void audio_resume(void)
308 // return: how many bytes can be played without blocking
309 static int get_space(void){
310 float x
=(float)(vo_pts
-ao_data
.pts
)/90000.0;
312 //FIXME: is it correct?
313 if(vo_mpegpes_fd
< 0) return 32000; //not using -vo mpegpes
314 // printf("vo_pts: %5.3f ao_pts: %5.3f\n",vo_pts/90000.0,ao_data.pts/90000.0);
316 y
=freq
*4*x
;y
/=ao_data
.outburst
;y
*=ao_data
.outburst
;
318 // printf("diff: %5.3f -> %d \n",x,y);
322 // plays 'len' bytes of 'data'
323 // it should round it down to outburst*n
324 // return: number of bytes played
325 static int play(void* data
,int len
,int flags
){
326 // printf("\nao_mpegpes: play(%d) freq=%d\n",len,freq_id);
327 if(ao_data
.format
==AF_FORMAT_MPEG2
)
328 send_mpeg_pes_packet (data
, len
, 0x1C0, ao_data
.pts
, 1, my_ao_write
);
331 unsigned short *s
=data
;
332 // if(len>2000) len=2000;
333 // printf("ao_mpegpes: len=%d \n",len);
334 if(ao_data
.format
==AF_FORMAT_AC3
)
335 for(i
=0;i
<len
/2;i
++) s
[i
]=(s
[i
]>>8)|(s
[i
]<<8); // le<->be
336 send_mpeg_lpcm_packet(data
, len
, 0xA0, ao_data
.pts
, freq_id
, my_ao_write
);
341 // return: delay in seconds between first and last sample in buffer
342 static float get_delay(void){