Module: wine
Branch: master
Commit: 175138a42c83f10df1d7529f9c46ef1f3dd25f5d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=175138a42c83f10df1d7529f9…
Author: Bruno Jesus <00cpxxx(a)gmail.com>
Date: Sun Oct 18 01:05:39 2015 +0800
avifil32: Absolute addresses already point to the correct place in the frame.
Signed-off-by: Bruno Jesus <00cpxxx(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/avifil32/avifile.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/dlls/avifil32/avifile.c b/dlls/avifil32/avifile.c
index f5abc1c..f649d05 100644
--- a/dlls/avifil32/avifile.c
+++ b/dlls/avifil32/avifile.c
@@ -1987,13 +1987,17 @@ static HRESULT AVIFILE_ParseIndex(const IAVIFileImpl *This, AVIINDEXENTRY *lp,
if (nStream > This->fInfo.dwStreams)
return AVIERR_BADFORMAT;
+ /* Video frames can be either indexed in a relative position to the
+ * "movi" chunk or in a absolute position in the file. If the index
+ * is relative the frame offset will always be so small that it will
+ * virtually never reach the "movi" offset so we can detect if the
+ * video is relative very fast.
+ */
if (*bAbsolute && lp->dwChunkOffset < This->dwMoviChunkPos)
*bAbsolute = FALSE;
- if (*bAbsolute)
- lp->dwChunkOffset += sizeof(DWORD);
- else
- lp->dwChunkOffset += pos;
+ if (!*bAbsolute)
+ lp->dwChunkOffset += pos; /* make the offset absolute */
if (FAILED(AVIFILE_AddFrame(This->ppStreams[nStream], lp->ckid, lp->dwChunkLength, lp->dwChunkOffset, lp->dwFlags)))
return AVIERR_MEMORY;
Module: website
Branch: master
Commit: d591cb2c4b65d6c9a22c0f2f3656af44120dc666
URL: http://source.winehq.org/git/website.git/?a=commit;h=d591cb2c4b65d6c9a22c0f…
Author: Łukasz Wojniłowicz <lukasz.wojnilowicz(a)gmail.com>
Date: Sat Oct 17 07:47:18 2015 +0200
Polish translation for release 1.7.53
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
news/pl/2015101601.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/pl/2015101601.xml b/news/pl/2015101601.xml
new file mode 100644
index 0000000..d88d4d9
--- /dev/null
+++ b/news/pl/2015101601.xml
@@ -0,0 +1,17 @@
+<news>
+<date>Październik 16, 2015</date>
+<title>Wydano Wine 1.7.53</title>
+<body>
+<p> Wydanie rozwojowe Wine 1.7.53 jest już dostępne.</p>
+<p> <a href="{$root}/announce/1.7.53">Co nowego</a> w tym wydaniu:
+<ul>
+ <li>Obsługa różnych wersji XAudio.</li>
+ <li>Więcej implementacji biblioteki DLL Usług Sieciowych.</li>
+ <li>Ulepszono osadzanie obiektów OLE.</li>
+ <li>Różne porządki w kodzie Direct3D.</li>
+ <li>Nowe wymaganie obecności pliku MAINTAINERS (opiekunowie) oraz Signed-off-by (zatwierdzony przez) w celu poprawienia procesu oceny łatek.</li>
+ <li>Rozmaite poprawki błędów.</li>
+</ul>
+<p>Źródło jest <a href="http://prdownloads.sourceforge.net/wine/wine-1.7.53.tar.bz2">już dostępne</a>.
+Paczki binarne są w trakcie budowy i ukażą się wkrótce w przeznaczonych dla nich <a href="{$root}/download">pobieralniach</a>.
+</p></body></news>
Module: website
Branch: master
Commit: ee1887925174bc5bbb077b831a21916e9171ece4
URL: http://source.winehq.org/git/website.git/?a=commit;h=ee1887925174bc5bbb077b…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Fri Oct 16 17:38:25 2015 +0200
French translation for release 1.7.53
Signed-off-by: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
news/fr/2015101601.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/fr/2015101601.xml b/news/fr/2015101601.xml
new file mode 100644
index 0000000..1908ca9
--- /dev/null
+++ b/news/fr/2015101601.xml
@@ -0,0 +1,16 @@
+<news>
+<date>16 octobre 2015</date>
+<title>Sortie de Wine 1.7.53</title>
+<body>
+<p> La version de développement 1.7.53 de Wine est disponible.</p>
+<p> <a href="{$root}/announce/1.7.53">Nouveautés</a> de cette version :
+<ul>
+ <li>Prise en charge des diverses versions de XAudio.</li>
+ <li>Avancement de l'implémentation de la DLL Web Services.</li>
+ <li>Incorporation d'objets OLE améliorée.</li>
+ <li>Divers nettoyages de code dans Direct3D.</li>
+ <li>Nouveau fichier MAINTAINERS et Signed-off-by prérequis pour améliorer le processus de révision des patchs.</li>
+ <li>Diverses corrections de bugs.</li>
+</ul></p>
+<p><p>Le <a href="http://prdownloads.sourceforge.net/wine/wine-1.7.53.tar.bz2">code source</a> est disponible dès à présent. Les paquets binaires sont en cours de construction, et apparaîtront sous peu sur leurs <a href="{$root}/download">sites de téléchargement</a> respectifs.
+</p></body></news>
Module: website
Branch: master
Commit: 26a75bcd45f1af0929cb3b96cf1d3eb93a95d0a6
URL: http://source.winehq.org/git/website.git/?a=commit;h=26a75bcd45f1af0929cb3b…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Oct 16 23:03:56 2015 +0900
Wine release 1.7.53
---
news/en/2015101601.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/en/2015101601.xml b/news/en/2015101601.xml
new file mode 100644
index 0000000..af7a75f
--- /dev/null
+++ b/news/en/2015101601.xml
@@ -0,0 +1,17 @@
+<news>
+<date>October 16, 2015</date>
+<title>Wine 1.7.53 Released</title>
+<body>
+<p> The Wine development release 1.7.53 is now available.</p>
+<p> <a href="{$root}/announce/1.7.53">What's new</a> in this release:
+<ul>
+ <li>Support for the various versions of XAudio.</li>
+ <li>More implementation of the Web Services DLL.</li>
+ <li>Improved OLE object embedding.</li>
+ <li>Various code cleanups in Direct3D.</li>
+ <li>New MAINTAINERS file and Signed-off-by requirement to improve the patch review process.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="http://prdownloads.sourceforge.net/wine/wine-1.7.53.tar.bz2">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>