vlc | branch: master | Francois Cartegnie <[email protected]> | Thu Aug 9 22:08:56 2018 +0200| [69ca39de6e56b705cdc7936f78c054e076da3a15] | committer: Francois Cartegnie
access: live555: fix off by one > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=69ca39de6e56b705cdc7936f78c054e076da3a15 --- modules/access/live555_dtsgen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/access/live555_dtsgen.h b/modules/access/live555_dtsgen.h index ea422df0ac..b532db902d 100644 --- a/modules/access/live555_dtsgen.h +++ b/modules/access/live555_dtsgen.h @@ -18,7 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #define DTSGEN_REORDER_MAX 4 /* should be enough */ -#define DTSGEN_HISTORY_COUNT (DTSGEN_REORDER_MAX + 1) +#define DTSGEN_HISTORY_COUNT (DTSGEN_REORDER_MAX + 2) //#define DTSGEN_DEBUG struct dtsgen_t _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
