Mercurial > audlegacy-plugins
changeset 867:d9c7b1d413c9 trunk
[svn] - last commit wasn't obviously related wit changes here; revert stuff that is still being tested
author | giacomo |
---|---|
date | Fri, 16 Mar 2007 18:58:10 -0700 |
parents | d8b8b36d2709 |
children | d889a20dd9b5 |
files | ChangeLog src/ffmpeg/libavformat/utils.c |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Mar 16 18:47:24 2007 -0700 +++ b/ChangeLog Fri Mar 16 18:58:10 2007 -0700 @@ -1,3 +1,10 @@ +2007-03-17 01:47:24 +0000 Giacomo Lozito <james@develia.org> + revision [1832] + - prevent skin list overlap when it's first populated and user quickly switchs to other tabs in the prefswin + trunk/src/ffmpeg/libavformat/utils.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-03-16 20:41:19 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [1830] - add slovak translation. closes #854.
--- a/src/ffmpeg/libavformat/utils.c Fri Mar 16 18:47:24 2007 -0700 +++ b/src/ffmpeg/libavformat/utils.c Fri Mar 16 18:58:10 2007 -0700 @@ -481,7 +481,7 @@ url_setbufsize(pb, buf_size); } - for(probe_size= PROBE_BUF_MAX; probe_size<=PROBE_BUF_MAX && !fmt; probe_size<<=1){ + for(probe_size= PROBE_BUF_MIN; probe_size<=PROBE_BUF_MAX && !fmt; probe_size<<=1){ /* read probe data */ pd->buf= av_realloc(pd->buf, probe_size); pd->buf_size = get_buffer(pb, pd->buf, probe_size);