]> git.sesse.net Git - x264/blobdiff - output/raw.c
Add new speedcontrol timings.
[x264] / output / raw.c
index ed3174cdad99748184a9d2f35ce229a7ecda58a3..a6f37d4535a32beccbc7509ab2a3666ffe0a7967 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * raw.c: raw muxer
  *****************************************************************************
- * Copyright (C) 2003-2012 x264 project
+ * Copyright (C) 2003-2016 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
@@ -30,7 +30,7 @@ static int open_file( char *psz_filename, hnd_t *p_handle, cli_output_opt_t *opt
 {
     if( !strcmp( psz_filename, "-" ) )
         *p_handle = stdout;
-    else if( !(*p_handle = fopen( psz_filename, "w+b" )) )
+    else if( !(*p_handle = x264_fopen( psz_filename, "w+b" )) )
         return -1;
 
     return 0;