4 * test_av.c - Test program for new API
6 * Copyright (C) 2000 Ralph Metzler <ralph@convergence.de>
7 * & Marcus Metzler <marcus@convergence.de>
8 * for convergence integrated media GmbH
10 * libav - MPEG-PS multiplexer, part of ffmpeg
11 * Copyright Gerard Lantau (see http://ffmpeg.sf.net)
20 #include <sys/types.h>
28 #ifndef CONFIG_DVB_HEAD
31 #include <sys/ioctl.h>
36 #include <ost/frontend.h>
38 #include <ost/video.h>
39 #include <ost/audio.h>
46 #include <sys/ioctl.h>
50 #include <linux/dvb/dmx.h>
51 #include <linux/dvb/frontend.h>
52 #include <linux/dvb/video.h>
53 #include <linux/dvb/audio.h>
58 #include "video_out.h"
59 #include "video_out_internal.h"
60 #include "libmpdemux/mpeg_packetizer.h"
63 extern int vo_mpegpes_fd2
;
65 static const vo_info_t info
=
68 "MPEG-PES to DVB card",
77 const LIBVO_EXTERN (mpegpes
)
80 config(uint32_t s_width
, uint32_t s_height
, uint32_t width
, uint32_t height
, uint32_t flags
, char *title
, uint32_t format
)
90 mp_msg(MSGT_VO
,MSGL_ERR
,"DVB: height=%d not supported (try 240/480 (ntsc) or 288/576 (pal)\n",s_height
);
97 static int preinit(const char *arg
){
100 char vo_file
[30], ao_file
[30], *tmp
;
103 if((tmp
= strstr(arg
, "card=")) != NULL
) {
104 card
= atoi(&tmp
[5]);
105 if((card
< 1) || (card
> 4)) {
106 mp_msg(MSGT_VO
, MSGL_ERR
, "DVB card number must be between 1 and 4\n");
116 //search the first usable card
120 sprintf(vo_file
, "/dev/dvb/adapter%d/video0", n
);
121 if(access(vo_file
, F_OK
| W_OK
)==0) {
128 mp_msg(MSGT_VO
,MSGL_INFO
, "Couldn't find a usable dvb video device, exiting\n");
131 #ifndef CONFIG_DVB_HEAD
132 mp_msg(MSGT_VO
,MSGL_INFO
, "Opening /dev/ost/video+audio\n");
133 sprintf(vo_file
, "/dev/ost/video");
134 sprintf(ao_file
, "/dev/ost/audio");
136 mp_msg(MSGT_VO
,MSGL_INFO
, "Opening /dev/dvb/adapter%d/video0+audio0\n", card
);
137 sprintf(vo_file
, "/dev/dvb/adapter%d/video0", card
);
138 sprintf(ao_file
, "/dev/dvb/adapter%d/audio0", card
);
140 if((vo_mpegpes_fd
= open(vo_file
,O_RDWR
)) < 0){
141 perror("DVB VIDEO DEVICE: ");
144 if ( (ioctl(vo_mpegpes_fd
,VIDEO_SET_BLANK
, false) < 0)){
145 perror("DVB VIDEO SET BLANK: ");
148 if ( (ioctl(vo_mpegpes_fd
,VIDEO_SELECT_SOURCE
, VIDEO_SOURCE_MEMORY
) < 0)){
149 perror("DVB VIDEO SELECT SOURCE: ");
152 if ( (ioctl(vo_mpegpes_fd
,VIDEO_PLAY
) < 0)){
153 perror("DVB VIDEO PLAY: ");
159 arg
= (arg
? arg
: "grab.mpg");
160 mp_msg(MSGT_VO
,MSGL_INFO
, "Saving PES stream to %s\n", arg
);
161 vo_mpegpes_fd
=open(arg
,O_WRONLY
|O_CREAT
,0666);
163 perror("vo_mpegpes");
170 static void draw_osd(void)
175 static int my_write(unsigned char* data
,int len
){
179 struct pollfd pfd
[NFD
];
181 // printf("write %d bytes \n",len);
183 pfd
[0].fd
= vo_mpegpes_fd
;
184 pfd
[0].events
= POLLOUT
;
186 pfd
[1].fd
= vo_mpegpes_fd2
;
187 pfd
[1].events
= POLLOUT
;
190 if (poll(pfd
,NFD
,1)){
191 if (pfd
[0].revents
& POLLOUT
){
192 int ret
=write(vo_mpegpes_fd
,data
,len
);
193 // printf("ret=%d \n",ret);
205 write(vo_mpegpes_fd
,data
,len
); // write to file
210 void send_pes_packet(unsigned char* data
,int len
,int id
,int timestamp
){
211 send_mpeg_pes_packet (data
, len
, id
, timestamp
, 1, my_write
);
214 void send_lpcm_packet(unsigned char* data
,int len
,int id
,unsigned int timestamp
,int freq_id
){
215 send_mpeg_lpcm_packet(data
, len
, id
, timestamp
, freq_id
, my_write
);
219 static int draw_frame(uint8_t * src
[])
221 vo_mpegpes_t
*p
=(vo_mpegpes_t
*)src
[0];
222 send_pes_packet(p
->data
,p
->size
,p
->id
,(p
->timestamp
>0)?p
->timestamp
:vo_pts
); // video data
226 static void flip_page (void)
230 static int draw_slice(uint8_t *srcimg
[], int stride
[], int w
,int h
,int x0
,int y0
)
237 query_format(uint32_t format
)
239 if(format
==IMGFMT_MPEGPES
) return VFCAP_CSP_SUPPORTED
|VFCAP_CSP_SUPPORTED_BY_HW
|VFCAP_TIMER
;
246 if(vo_mpegpes_fd2
>=0 && vo_mpegpes_fd2
!=vo_mpegpes_fd
) close(vo_mpegpes_fd2
);
248 if(vo_mpegpes_fd
>=0){ close(vo_mpegpes_fd
);vo_mpegpes_fd
=-1;}
252 static void check_events(void)
256 static int control(uint32_t request
, void *data
, ...)
259 case VOCTRL_QUERY_FORMAT
:
260 return query_format(*((uint32_t*)data
));