Mercurial > audlegacy-plugins
changeset 866:d8b8b36d2709 trunk
[svn] - prevent skin list overlap when it's first populated and user quickly switchs to other tabs in the prefswin
author | giacomo |
---|---|
date | Fri, 16 Mar 2007 18:47:24 -0700 |
parents | d94881463e1f |
children | d9c7b1d413c9 |
files | ChangeLog src/ffmpeg/libavformat/utils.c |
diffstat | 2 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Mar 16 13:41:19 2007 -0700 +++ b/ChangeLog Fri Mar 16 18:47:24 2007 -0700 @@ -1,3 +1,12 @@ +2007-03-16 20:41:19 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [1830] + - add slovak translation. closes #854. + + trunk/po/LINGUAS | 1 + trunk/po/sk.po | 4026 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 4027 insertions(+) + + 2007-03-16 20:05:14 +0000 Giacomo Lozito <james@develia.org> revision [1828] - ffmpeg: prevent it from crashing when probing remote sources
--- a/src/ffmpeg/libavformat/utils.c Fri Mar 16 13:41:19 2007 -0700 +++ b/src/ffmpeg/libavformat/utils.c Fri Mar 16 18:47:24 2007 -0700 @@ -481,7 +481,7 @@ url_setbufsize(pb, buf_size); } - for(probe_size= PROBE_BUF_MIN; probe_size<=PROBE_BUF_MAX && !fmt; probe_size<<=1){ + for(probe_size= PROBE_BUF_MAX; 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);