/*1* DV input/output over IEEE 1394 on OHCI chips2* Copyright (C)2001 Daniel Maas <[email protected]>3* receive, proc_fs by Dan Dennedy <[email protected]>4*5* based on:6* video1394.h - driver for OHCI 1394 boards7* Copyright (C)1999,2000 Sebastien Rougeaux <[email protected]>8* Peter Schlaile <[email protected]>9*10* This file is part of FFmpeg.11*12* FFmpeg is free software; you can redistribute it and/or13* modify it under the terms of the GNU Lesser General Public14* License as published by the Free Software Foundation; either15* version 2.1 of the License, or (at your option) any later version.16*17* FFmpeg is distributed in the hope that it will be useful,18* but WITHOUT ANY WARRANTY; without even the implied warranty of19* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU20* Lesser General Public License for more details.21*22* You should have received a copy of the GNU Lesser General Public23* License along with FFmpeg; if not, write to the Free Software24* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA25*/2627#ifndef AVDEVICE_DV1394_H28#define AVDEVICE_DV1394_H2930#define DV1394_DEFAULT_CHANNEL 6331#define DV1394_DEFAULT_CARD 032#define DV1394_RING_FRAMES 203334#define DV1394_WIDTH 72035#define DV1394_NTSC_HEIGHT 48036#define DV1394_PAL_HEIGHT 5763738/* This is the public user-space interface. Try not to break it. */3940#define DV1394_API_VERSION 0x200111274142/* ********************43** **44** DV1394 API **45** **46********************4748There are two methods of operating the DV1394 DV output device.49501)5152The simplest is an interface based on write(): simply write53full DV frames of data to the device, and they will be transmitted54as quickly as possible. The FD may be set for non-blocking I/O,55in which case you can use select() or poll() to wait for output56buffer space.5758To set the DV output parameters (e.g. whether you want NTSC or PAL59video), use the DV1394_INIT ioctl, passing in the parameters you60want in a struct dv1394_init.6162Example 1:63To play a raw .DV file: cat foo.DV > /dev/dv139464(cat will use write() internally)6566Example 2:67static struct dv1394_init init = {680x63, (broadcast channel)694, (four-frame ringbuffer)70DV1394_NTSC, (send NTSC video)710, 0 (default empty packet rate)72}7374ioctl(fd, DV1394_INIT, &init);7576while(1) {77read( <a raw DV file>, buf, DV1394_NTSC_FRAME_SIZE );78write( <the dv1394 FD>, buf, DV1394_NTSC_FRAME_SIZE );79}80812)8283For more control over buffering, and to avoid unnecessary copies84of the DV data, you can use the more sophisticated the mmap() interface.85First, call the DV1394_INIT ioctl to specify your parameters,86including the number of frames in the ringbuffer. Then, calling mmap()87on the dv1394 device will give you direct access to the ringbuffer88from which the DV card reads your frame data.8990The ringbuffer is simply one large, contiguous region of memory91containing two or more frames of packed DV data. Each frame of DV data92is 120000 bytes (NTSC) or 144000 bytes (PAL).9394Fill one or more frames in the ringbuffer, then use the DV1394_SUBMIT_FRAMES95ioctl to begin I/O. You can use either the DV1394_WAIT_FRAMES ioctl96or select()/poll() to wait until the frames are transmitted. Next, you'll97need to call the DV1394_GET_STATUS ioctl to determine which ringbuffer98frames are clear (ready to be filled with new DV data). Finally, use99DV1394_SUBMIT_FRAMES again to send the new data to the DV output.100101102Example: here is what a four-frame ringbuffer might look like103during DV transmission:104105106frame 0 frame 1 frame 2 frame 3107108*--------------------------------------*109| CLEAR | DV data | DV data | CLEAR |110*--------------------------------------*111<ACTIVE>112113transmission goes in this direction --->>>114115116The DV hardware is currently transmitting the data in frame 1.117Once frame 1 is finished, it will automatically transmit frame 2.118(if frame 2 finishes before frame 3 is submitted, the device119will continue to transmit frame 2, and will increase the dropped_frames120counter each time it repeats the transmission).121122123If you called DV1394_GET_STATUS at this instant, you would124receive the following values:125126n_frames = 4127active_frame = 1128first_clear_frame = 3129n_clear_frames = 2130131At this point, you should write new DV data into frame 3 and optionally132frame 0. Then call DV1394_SUBMIT_FRAMES to inform the device that133it may transmit the new frames.134135ERROR HANDLING136137An error (buffer underflow/overflow or a break in the DV stream due138to a 1394 bus reset) can be detected by checking the dropped_frames139field of struct dv1394_status (obtained through the140DV1394_GET_STATUS ioctl).141142The best way to recover from such an error is to re-initialize143dv1394, either by using the DV1394_INIT ioctl call, or closing the144file descriptor and opening it again. (note that you must unmap all145ringbuffer mappings when closing the file descriptor, or else146dv1394 will still be considered 'in use').147148MAIN LOOP149150For maximum efficiency and robustness against bus errors, you are151advised to model the main loop of your application after the152following pseudo-code example:153154(checks of system call return values omitted for brevity; always155check return values in your code!)156157while( frames left ) {158159struct pollfd *pfd = ...;160161pfd->fd = dv1394_fd;162pfd->revents = 0;163pfd->events = POLLOUT | POLLIN; (OUT for transmit, IN for receive)164165(add other sources of I/O here)166167poll(pfd, 1, -1); (or select(); add a timeout if you want)168169if(pfd->revents) {170struct dv1394_status status;171172ioctl(dv1394_fd, DV1394_GET_STATUS, &status);173174if(status.dropped_frames > 0) {175reset_dv1394();176} else {177int i;178for (i = 0; i < status.n_clear_frames; i++) {179copy_DV_frame();180}181}182}183}184185where copy_DV_frame() reads or writes on the dv1394 file descriptor186(read/write mode) or copies data to/from the mmap ringbuffer and187then calls ioctl(DV1394_SUBMIT_FRAMES) to notify dv1394 that new188frames are available (mmap mode).189190reset_dv1394() is called in the event of a buffer191underflow/overflow or a halt in the DV stream (e.g. due to a 1394192bus reset). To guarantee recovery from the error, this function193should close the dv1394 file descriptor (and munmap() all194ringbuffer mappings, if you are using them), then re-open the195dv1394 device (and re-map the ringbuffer).196197*/198199200/* maximum number of frames in the ringbuffer */201#define DV1394_MAX_FRAMES 32202203/* number of *full* isochronous packets per DV frame */204#define DV1394_NTSC_PACKETS_PER_FRAME 250205#define DV1394_PAL_PACKETS_PER_FRAME 300206207/* size of one frame's worth of DV data, in bytes */208#define DV1394_NTSC_FRAME_SIZE (480 * DV1394_NTSC_PACKETS_PER_FRAME)209#define DV1394_PAL_FRAME_SIZE (480 * DV1394_PAL_PACKETS_PER_FRAME)210211212/* ioctl() commands */213214enum {215/* I don't like using 0 as a valid ioctl() */216DV1394_INVALID = 0,217218219/* get the driver ready to transmit video.220pass a struct dv1394_init* as the parameter (see below),221or NULL to get default parameters */222DV1394_INIT,223224225/* stop transmitting video and free the ringbuffer */226DV1394_SHUTDOWN,227228229/* submit N new frames to be transmitted, where230the index of the first new frame is first_clear_buffer,231and the index of the last new frame is232(first_clear_buffer + N) % n_frames */233DV1394_SUBMIT_FRAMES,234235236/* block until N buffers are clear (pass N as the parameter)237Because we re-transmit the last frame on underrun, there238will at most be n_frames - 1 clear frames at any time */239DV1394_WAIT_FRAMES,240241/* capture new frames that have been received, where242the index of the first new frame is first_clear_buffer,243and the index of the last new frame is244(first_clear_buffer + N) % n_frames */245DV1394_RECEIVE_FRAMES,246247248DV1394_START_RECEIVE,249250251/* pass a struct dv1394_status* as the parameter (see below) */252DV1394_GET_STATUS,253};254255256257enum pal_or_ntsc {258DV1394_NTSC = 0,259DV1394_PAL260};261262263264265/* this is the argument to DV1394_INIT */266struct dv1394_init {267/* DV1394_API_VERSION */268unsigned int api_version;269270/* isochronous transmission channel to use */271unsigned int channel;272273/* number of frames in the ringbuffer. Must be at least 2274and at most DV1394_MAX_FRAMES. */275unsigned int n_frames;276277/* send/receive PAL or NTSC video format */278enum pal_or_ntsc format;279280/* the following are used only for transmission */281282/* set these to zero unless you want a283non-default empty packet rate (see below) */284unsigned long cip_n;285unsigned long cip_d;286287/* set this to zero unless you want a288non-default SYT cycle offset (default = 3 cycles) */289unsigned int syt_offset;290};291292/* NOTE: you may only allocate the DV frame ringbuffer once each time293you open the dv1394 device. DV1394_INIT will fail if you call it a294second time with different 'n_frames' or 'format' arguments (which295would imply a different size for the ringbuffer). If you need a296different buffer size, simply close and re-open the device, then297initialize it with your new settings. */298299/* Q: What are cip_n and cip_d? */300301/*302A: DV video streams do not utilize 100% of the potential bandwidth offered303by IEEE 1394 (FireWire). To achieve the correct rate of data transmission,304DV devices must periodically insert empty packets into the 1394 data stream.305Typically there is one empty packet per 14-16 data-carrying packets.306307Some DV devices will accept a wide range of empty packet rates, while others308require a precise rate. If the dv1394 driver produces empty packets at309a rate that your device does not accept, you may see ugly patterns on the310DV output, or even no output at all.311312The default empty packet insertion rate seems to work for many people; if313your DV output is stable, you can simply ignore this discussion. However,314we have exposed the empty packet rate as a parameter to support devices that315do not work with the default rate.316317The decision to insert an empty packet is made with a numerator/denominator318algorithm. Empty packets are produced at an average rate of CIP_N / CIP_D.319You can alter the empty packet rate by passing non-zero values for cip_n320and cip_d to the INIT ioctl.321322*/323324325326struct dv1394_status {327/* this embedded init struct returns the current dv1394328parameters in use */329struct dv1394_init init;330331/* the ringbuffer frame that is currently being332displayed. (-1 if the device is not transmitting anything) */333int active_frame;334335/* index of the first buffer (ahead of active_frame) that336is ready to be filled with data */337unsigned int first_clear_frame;338339/* how many buffers, including first_clear_buffer, are340ready to be filled with data */341unsigned int n_clear_frames;342343/* how many times the DV stream has underflowed, overflowed,344or otherwise encountered an error, since the previous call345to DV1394_GET_STATUS */346unsigned int dropped_frames;347348/* N.B. The dropped_frames counter is only a lower bound on the actual349number of dropped frames, with the special case that if dropped_frames350is zero, then it is guaranteed that NO frames have been dropped351since the last call to DV1394_GET_STATUS.352*/353};354355356#endif /* AVDEVICE_DV1394_H */357358359