Commit 8b9e7ddd authored by reimar's avatar reimar

more av_strl* adjustments


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9412 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 253999c1
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <stdarg.h> #include <stdarg.h>
#include "network.h" #include "network.h"
#include <fcntl.h> #include <fcntl.h>
#include "avstring.h"
#define RTP_TX_BUF_SIZE (64 * 1024) #define RTP_TX_BUF_SIZE (64 * 1024)
#define RTP_RX_BUF_SIZE (128 * 1024) #define RTP_RX_BUF_SIZE (128 * 1024)
......
...@@ -241,7 +241,7 @@ if((y)<(x)){\ ...@@ -241,7 +241,7 @@ if((y)<(x)){\
#define rand rand_is_forbidden_due_to_state_trashing #define rand rand_is_forbidden_due_to_state_trashing
#define srand srand_is_forbidden_due_to_state_trashing #define srand srand_is_forbidden_due_to_state_trashing
#define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
#define strcat strcat_is_forbidden_due_to_security_issues_use_pstrcat #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
#define exit exit_is_forbidden #define exit exit_is_forbidden
#if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H)) #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H))
#define printf please_use_av_log #define printf please_use_av_log
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "framehook.h" #include "framehook.h"
#include "avformat.h" #include "avformat.h"
#include "swscale.h" #include "swscale.h"
#include "avstring.h"
static int sws_flags = SWS_BICUBIC; static int sws_flags = SWS_BICUBIC;
...@@ -68,8 +69,8 @@ static rwpipe *rwpipe_open( int argc, char *argv[] ) ...@@ -68,8 +69,8 @@ static rwpipe *rwpipe_open( int argc, char *argv[] )
strcpy( command, "" ); strcpy( command, "" );
for ( i = 0; i < argc; i ++ ) for ( i = 0; i < argc; i ++ )
{ {
pstrcat( command, COMMAND_SIZE, argv[ i ] ); av_strlcat( command, argv[ i ], COMMAND_SIZE );
pstrcat( command, COMMAND_SIZE, " " ); av_strlcat( command, " ", COMMAND_SIZE );
} }
dup2( output[ 0 ], STDIN_FILENO ); dup2( output[ 0 ], STDIN_FILENO );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment