diff --git a/src/zm_videostore.cpp b/src/zm_videostore.cpp index 215587636..7d5d2de59 100644 --- a/src/zm_videostore.cpp +++ b/src/zm_videostore.cpp @@ -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); } } diff --git a/web/skins/classic/views/filter.php b/web/skins/classic/views/filter.php index 2f82fcd49..26e1aa42e 100644 --- a/web/skins/classic/views/filter.php +++ b/web/skins/classic/views/filter.php @@ -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'] )