]> git.sesse.net Git - ffmpeg/blobdiff - libavdevice/dv1394.c
cosmetic: break long line
[ffmpeg] / libavdevice / dv1394.c
index 85836f1b80290692e771e8fb1278d434db8efc29..a55fa97cefa56177e6b75d03282446b031f105bf 100644 (file)
 #include <unistd.h>
 #include <fcntl.h>
 #include <errno.h>
+#include <poll.h>
 #include <sys/ioctl.h>
-#ifdef HAVE_SYS_MMAN_H
 #include <sys/mman.h>
-#endif
-#include <sys/poll.h>
 #include <sys/time.h>
 #include <time.h>
+#include <strings.h>
 
-#include "avformat.h"
+#include "libavformat/avformat.h"
 
 #undef DV1394_DEBUG
 
+#include "libavformat/dv.h"
 #include "dv1394.h"
-#include "dv.h"
 
 struct dv1394_data {
     int fd;
@@ -230,7 +229,7 @@ static int dv1394_close(AVFormatContext * context)
 
 AVInputFormat dv1394_demuxer = {
     .name           = "dv1394",
-    .long_name      = "dv1394 A/V grab",
+    .long_name      = NULL_IF_CONFIG_SMALL("DV1394 A/V grab"),
     .priv_data_size = sizeof(struct dv1394_data),
     .read_header    = dv1394_read_header,
     .read_packet    = dv1394_read_packet,