Commit f9b37f80 authored by Stephane Ragot's avatar Stephane Ragot
Browse files

increasing string buffer length to avoid issues in testing

parent 143afb2d
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -199,12 +199,12 @@ int main(
    char *argv[] )
{
    FILE *FmtSWFile = NULL;
    char line[256];
    char line[2048];
    int argc_local = 0;
    char *argv_local[MAX_ARGV] = { 0 };
#ifdef IVAS_RTPDUMP
    IVAS_RTP ivasRtp = { 0 };
    char prev_outputBitstreamFilename[256] = { 0 };
    char prev_outputBitstreamFilename[2048] = { 0 };
    int rtp_term = 0;
#endif