Removed excess \r from stream output.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@548 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2003-06-03 21:20:09 +00:00
parent de947fa9e2
commit 847d07b7f7
1 changed files with 3 additions and 3 deletions

View File

@ -681,7 +681,7 @@ void Monitor::StreamImages( unsigned long idle, unsigned long refresh, FILE *fd,
fprintf( fd, "Cache-Control: no-cache\r\n" ); fprintf( fd, "Cache-Control: no-cache\r\n" );
fprintf( fd, "Expires: Thu, 01 Dec 1994 16:00:00 GMT\r\n" ); fprintf( fd, "Expires: Thu, 01 Dec 1994 16:00:00 GMT\r\n" );
fprintf( fd, "Content-Type: multipart/x-mixed-replace;boundary=ZoneMinderFrame\r\n\r\n" ); fprintf( fd, "Content-Type: multipart/x-mixed-replace;boundary=ZoneMinderFrame\r\n\r\n" );
fprintf( fd, "--ZoneMinderFrame\r\n" ); fprintf( fd, "--ZoneMinderFrame\n" );
int last_read_index = image_buffer_count; int last_read_index = image_buffer_count;
JOCTET img_buffer[camera->ImageSize()]; JOCTET img_buffer[camera->ImageSize()];
int img_buffer_size = 0; int img_buffer_size = 0;
@ -703,9 +703,9 @@ void Monitor::StreamImages( unsigned long idle, unsigned long refresh, FILE *fd,
Image *image = snap->image; Image *image = snap->image;
image->EncodeJpeg( img_buffer, &img_buffer_size ); image->EncodeJpeg( img_buffer, &img_buffer_size );
fprintf( fd, "Content-type: image/jpg\r\n\r\n" ); fprintf( fd, "Content-type: image/jpg\n\n" );
fwrite( img_buffer, 1, img_buffer_size, fd ); fwrite( img_buffer, 1, img_buffer_size, fd );
fprintf( fd, "\r\n--ZoneMinderFrame\r\n" ); fprintf( fd, "\n--ZoneMinderFrame\n" );
} }
usleep( refresh*1000 ); usleep( refresh*1000 );
for ( int i = 0; shared_images->state == IDLE && i < loop_count; i++ ) for ( int i = 0; shared_images->state == IDLE && i < loop_count; i++ )