Moved timestamp encoding to before JPEGising

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@861 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-02-15 23:35:15 +00:00
parent 233de2fd6b
commit 2452b48239
1 changed files with 4 additions and 4 deletions

View File

@ -1066,12 +1066,12 @@ void Monitor::StreamImages( unsigned long idle, unsigned long refresh, time_t tt
if ( scale == 1 ) if ( scale == 1 )
{ {
snap_image->EncodeJpeg( img_buffer, &img_buffer_size );
if ( !timestamp_on_capture ) if ( !timestamp_on_capture )
{ {
TimestampImage( snap_image, snap->timestamp->tv_sec ); TimestampImage( snap_image, snap->timestamp->tv_sec );
} }
snap_image->EncodeJpeg( img_buffer, &img_buffer_size );
} }
else else
{ {
@ -1079,12 +1079,12 @@ void Monitor::StreamImages( unsigned long idle, unsigned long refresh, time_t tt
scaled_image.Scale( scale ); scaled_image.Scale( scale );
scaled_image.EncodeJpeg( img_buffer, &img_buffer_size );
if ( !timestamp_on_capture ) if ( !timestamp_on_capture )
{ {
TimestampImage( &scaled_image, snap->timestamp->tv_sec ); TimestampImage( &scaled_image, snap->timestamp->tv_sec );
} }
scaled_image.EncodeJpeg( img_buffer, &img_buffer_size );
} }
fprintf( fd, "Content-type: image/jpg\n\n" ); fprintf( fd, "Content-type: image/jpg\n\n" );