diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-06-20 15:30:14 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-06-20 15:30:14 +0000 |
commit | 377ea75708e05b8cb4285c15362ee0a262947e93 (patch) | |
tree | 717d47dc7dc5bc3f522f2b0dcd02c386b97bbef4 /libavformat/dv1394.h | |
parent | eb60dddc2e5b61041409ededb337d2ba1c21ef03 (diff) | |
download | ffmpeg-377ea75708e05b8cb4285c15362ee0a262947e93.tar.gz |
pal vs ntsc fix by stoyan k <stoyan@i-space.org>
Originally committed as revision 1978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv1394.h')
-rw-r--r-- | libavformat/dv1394.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/dv1394.h b/libavformat/dv1394.h index 214c8055df..1985bbda5f 100644 --- a/libavformat/dv1394.h +++ b/libavformat/dv1394.h @@ -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 */ |