]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/file.c
lavf: split packets before muxing.
[ffmpeg] / libavformat / file.c
index 840d3684c7937ce1ac7a6e4c88a905d1a0c4e6f4..e09a64b37cfd0597c4eab8ad81a538c47ac13020 100644 (file)
@@ -85,7 +85,7 @@ static int file_get_handle(URLContext *h)
 
 static int file_check(URLContext *h, int mask)
 {
-#if defined(HAVE_ACCESS) && defined(R_OK)
+#if HAVE_ACCESS && defined(R_OK)
     int ret = 0;
     if (access(h->filename, F_OK) < 0)
         return AVERROR(errno);