X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess_output%2Ffile.c;h=91ae8636690cc11a0e1c7c6b687d38f513cc1317;hb=2c0b770976956de35b321f3307405adc9cfde85e;hp=123bcaec47ba414ff44f1b1d2b636748cd25fab3;hpb=3147cc20d467e776b8996268e04352729c26a66d;p=vlc diff --git a/modules/access_output/file.c b/modules/access_output/file.c index 123bcaec47..91ae863669 100644 --- a/modules/access_output/file.c +++ b/modules/access_output/file.c @@ -31,7 +31,6 @@ #endif #include -#include #include #include #include @@ -40,7 +39,7 @@ #include #include #include -#include +#include #include #if defined( WIN32 ) && !defined( UNDER_CE ) @@ -64,6 +63,8 @@ static void Close( vlc_object_t * ); #define APPEND_TEXT N_("Append to file") #define APPEND_LONGTEXT N_( "Append to file if it exists instead " \ "of replacing it.") +#define SYNC_TEXT N_("Synchronous writing") +#define SYNC_LONGTEXT N_( "Open the file with synchronous writing.") vlc_module_begin () set_description( N_("File stream output") ) @@ -71,10 +72,11 @@ vlc_module_begin () set_capability( "sout access", 50 ) set_category( CAT_SOUT ) set_subcategory( SUBCAT_SOUT_ACO ) - add_shortcut( "file" ) - add_shortcut( "stream" ) + add_shortcut( "file", "stream" ) add_bool( SOUT_CFG_PREFIX "append", false, NULL, APPEND_TEXT,APPEND_LONGTEXT, true ) + add_bool( SOUT_CFG_PREFIX "sync", false, NULL, SYNC_TEXT,SYNC_LONGTEXT, + false ) set_callbacks( Open, Close ) vlc_module_end () @@ -83,7 +85,7 @@ vlc_module_end () * Exported prototypes *****************************************************************************/ static const char *const ppsz_sout_options[] = { - "append", NULL + "append", "sync", NULL }; static ssize_t Write( sout_access_out_t *, block_t * ); @@ -103,6 +105,7 @@ static int Open( vlc_object_t *p_this ) { sout_access_out_t *p_access = (sout_access_out_t*)p_this; int fd; + bool sync; config_ChainParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg ); @@ -113,6 +116,7 @@ static int Open( vlc_object_t *p_this ) } bool append = var_GetBool( p_access, SOUT_CFG_PREFIX "append" ); + sync = var_GetBool( p_access, SOUT_CFG_PREFIX "sync" ); if( !strcmp( p_access->psz_path, "-" ) ) { @@ -120,7 +124,7 @@ static int Open( vlc_object_t *p_this ) #ifdef WIN32 setmode (fileno (stdout), O_BINARY); #endif - fd = dup (fileno (stdout)); + fd = vlc_dup (fileno (stdout)); msg_Dbg( p_access, "using stdout" ); #else #warning stdout is not supported on Windows Mobile, but may be used on Windows CE @@ -132,7 +136,10 @@ static int Open( vlc_object_t *p_this ) char *psz_tmp = str_format( p_access, p_access->psz_path ); path_sanitize( psz_tmp ); - fd = utf8_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE | + fd = vlc_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE | +#ifdef O_SYNC + (sync ? O_SYNC : 0) | +#endif (append ? 0 : O_TRUNC), 0666 ); free( psz_tmp ); }