Commit fd0f129e authored by al3x's avatar al3x

pal vs ntsc fix by stoyan k <stoyan@i-space.org>


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1978 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 149a0991
......@@ -31,7 +31,7 @@
#define DV1394_RING_FRAMES 20
#define DV1394_WIDTH 720
#define DV1394_HEIGHT 480
#define DV1394_HEIGHT 576
/* This is the public user-space interface. Try not to break it. */
......@@ -198,12 +198,12 @@
#define DV1394_MAX_FRAMES 32
/* number of *full* isochronous packets per DV frame */
#define DV1394_NTSC_PACKETS_PER_FRAME 250
#define DV1394_PAL_PACKETS_PER_FRAME 300
#define DV1394_NTSC_PACKETS_PER_FRAME 300
#define DV1394_PAL_PACKETS_PER_FRAME 250
/* size of one frame's worth of DV data, in bytes */
#define DV1394_NTSC_FRAME_SIZE (480 * DV1394_NTSC_PACKETS_PER_FRAME)
#define DV1394_PAL_FRAME_SIZE (480 * DV1394_PAL_PACKETS_PER_FRAME)
#define DV1394_PAL_FRAME_SIZE (576 * DV1394_PAL_PACKETS_PER_FRAME)
/* ioctl() commands */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment