Merge branch 'storageareas' of github.com:ConnorTechnology/ZoneMinder into storageareas
This commit is contained in:
commit
11ce50925c
|
@ -722,7 +722,7 @@ int VideoStore::writeVideoFramePacket(AVPacket *ipkt) {
|
|||
ipkt->pts,
|
||||
video_last_pts,
|
||||
duration);
|
||||
if (duration < 0) {
|
||||
if (duration <= 0) {
|
||||
duration = ipkt->duration ? ipkt->duration : av_rescale_q(1,video_in_stream->time_base, video_out_stream->time_base);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ $filterNames = array( ''=>translate('ChooseFilter') );
|
|||
$filter = NULL;
|
||||
|
||||
foreach ( dbFetchAll( 'SELECT * FROM Filters ORDER BY Name' ) as $row ) {
|
||||
$filterNames[$row['Id']] = $row['Name'];
|
||||
$filterNames[$row['Id']] = $row['Id'] . ' ' . $row['Name'];
|
||||
if ( $row['Background'] )
|
||||
$filterNames[$row['Id']] .= '*';
|
||||
if ( $row['Concurrent'] )
|
||||
|
|
Loading…
Reference in New Issue