Mercurial > mplayer.hg
annotate libao2/ao_mpegpes.c @ 7001:797e7ba735ac
not only divx4 has 2, 3pass
author | gabucino |
---|---|
date | Wed, 14 Aug 2002 20:33:26 +0000 |
parents | 23221df30608 |
children | 13bc391fc19c |
rev | line source |
---|---|
2708 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
6856 | 3 #ifdef HAVE_DVB |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
4 #include <sys/ioctl.h> |
6856 | 5 #endif |
2708 | 6 |
5060 | 7 #include "../config.h" |
8 | |
2708 | 9 #include "audio_out.h" |
10 #include "audio_out_internal.h" | |
11 | |
12 #include "afmt.h" | |
13 | |
4792 | 14 #ifdef HAVE_DVB |
15 #include <ost/audio.h> | |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
16 audioMixer_t dvb_mixer={255,255}; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
17 extern int vo_mpegpes_fd; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
18 extern int vo_mpegpes_fd2; |
4792 | 19 #endif |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
20 |
2708 | 21 static ao_info_t info = |
22 { | |
4792 | 23 #ifdef HAVE_DVB |
24 "DVB audio output", | |
25 #else | |
26 "Mpeg-PES audio output", | |
27 #endif | |
2708 | 28 "mpegpes", |
29 "A'rpi", | |
30 "" | |
31 }; | |
32 | |
33 LIBAO_EXTERN(mpegpes) | |
34 | |
35 | |
36 // to set/get/query special features/parameters | |
37 static int control(int cmd,int arg){ | |
4792 | 38 #ifdef HAVE_DVB |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
39 switch(cmd){ |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
40 case AOCONTROL_GET_VOLUME: |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
41 if(vo_mpegpes_fd2>=0){ |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
42 ((ao_control_vol_t*)(arg))->left=dvb_mixer.volume_left/2.56; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
43 ((ao_control_vol_t*)(arg))->right=dvb_mixer.volume_right/2.56; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
44 return CONTROL_OK; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
45 } |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
46 return CONTROL_ERROR; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
47 case AOCONTROL_SET_VOLUME: |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
48 if(vo_mpegpes_fd2>=0){ |
5060 | 49 dvb_mixer.volume_left=((ao_control_vol_t*)(arg))->left*2.56; |
50 dvb_mixer.volume_right=((ao_control_vol_t*)(arg))->right*2.56; | |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
51 if(dvb_mixer.volume_left>255) dvb_mixer.volume_left=255; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
52 if(dvb_mixer.volume_right>255) dvb_mixer.volume_right=255; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
53 // printf("Setting DVB volume: %d ; %d \n",dvb_mixer.volume_left,dvb_mixer.volume_right); |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
54 if ( (ioctl(vo_mpegpes_fd2,AUDIO_SET_MIXER, &dvb_mixer) < 0)){ |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
55 perror("DVB AUDIO SET MIXER: "); |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
56 return CONTROL_ERROR; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
57 } |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
58 return CONTROL_OK; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
59 } |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
60 return CONTROL_ERROR; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
61 } |
4792 | 62 #endif |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4331
diff
changeset
|
63 return CONTROL_UNKNOWN; |
2708 | 64 } |
65 | |
4331 | 66 static int freq=0; |
4300
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
67 static int freq_id=0; |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
68 |
2708 | 69 // open & setup audio device |
70 // return: 1=success 0=fail | |
71 static int init(int rate,int channels,int format,int flags){ | |
72 | |
3095 | 73 ao_data.outburst=2000; |
74 ao_data.format=format; | |
4331 | 75 freq=rate; |
4300
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
76 |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
77 switch(rate){ |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
78 case 48000: freq_id=0;break; |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
79 case 96000: freq_id=1;break; |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
80 case 44100: freq_id=2;break; |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
81 case 32000: freq_id=3;break; |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
82 default: |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
83 fprintf(stderr,"ao_mpegpes: %d Hz not supported, try to resample (RTFM)\n",rate); |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
84 return 0; |
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
85 } |
2708 | 86 |
87 return 1; | |
88 } | |
89 | |
90 // close audio device | |
91 static void uninit(){ | |
92 | |
93 } | |
94 | |
95 // stop playing and empty buffers (for seeking/pause) | |
96 static void reset(){ | |
97 | |
98 } | |
99 | |
100 // stop playing, keep buffers (for pause) | |
101 static void audio_pause() | |
102 { | |
103 // for now, just call reset(); | |
104 reset(); | |
105 } | |
106 | |
107 // resume playing, after audio_pause() | |
108 static void audio_resume() | |
109 { | |
110 } | |
111 | |
112 void send_pes_packet(unsigned char* data,int len,int id,int timestamp); | |
4300
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
113 void send_lpcm_packet(unsigned char* data,int len,int id,int timestamp,int freq_id); |
2708 | 114 extern int vo_pts; |
115 | |
116 // return: how many bytes can be played without blocking | |
117 static int get_space(){ | |
4331 | 118 float x=(float)(vo_pts-ao_data.pts)/90000.0; |
2708 | 119 int y; |
120 if(x<=0) return 0; | |
4331 | 121 y=freq*4*x;y/=ao_data.outburst;y*=ao_data.outburst; |
122 if(y>32000) y=32000; | |
2708 | 123 // printf("diff: %5.3f -> %d \n",x,y); |
124 return y; | |
125 } | |
126 | |
127 // plays 'len' bytes of 'data' | |
128 // it should round it down to outburst*n | |
129 // return: number of bytes played | |
130 static int play(void* data,int len,int flags){ | |
3095 | 131 if(ao_data.format==AFMT_MPEG) |
132 send_pes_packet(data,len,0x1C0,ao_data.pts); | |
2708 | 133 else { |
134 int i; | |
135 unsigned short *s=data; | |
4300
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
136 // if(len>2000) len=2000; |
4305 | 137 // printf("ao_mpegpes: len=%d \n",len); |
2708 | 138 for(i=0;i<len/2;i++) s[i]=(s[i]>>8)|(s[i]<<8); // le<->be |
4300
4ebab79785b7
passing samplerate to LPCM writer - 44, 32 and 96khz are also supported from now
arpi
parents:
3095
diff
changeset
|
139 send_lpcm_packet(data,len,0xA0,ao_data.pts,freq_id); |
2708 | 140 } |
141 return len; | |
142 } | |
143 | |
3095 | 144 // return: delay in seconds between first and last sample in buffer |
145 static float get_delay(){ | |
2708 | 146 |
3095 | 147 return 0.0; |
2708 | 148 } |
149 |