Browse code

swscale: Readd #define _SVID_SOURCE

This was removed erroneously in
046f081b46c8479820409cf8f530b988221bd15b. This define still is
necessary for getting MAP_ANONYMOUS defined on linux/glibc,
despite the define reshuffling done in that commit.

Without MAP_ANONYMOUS defined, the mprotect calls for setting the
generated mmx2 scaler code pages executable are left out, causing
crashes if that codepath is chosen.

This patch fixes scaling from 192x144 to 320x240 with
-sws_flags fast_bilinear, which crashes on linux at the
moment.

Signed-off-by: Martin Storsjö <martin@martin.st>
(cherry picked from commit f32dfad9dc64acf0fd1bb867e127a9efe6380676)

Signed-off-by: Reinhard Tartler <siretart@tauware.de>

Martin Storsjö authored on 2011/11/25 07:45:16
Showing 1 changed files
... ...
@@ -18,6 +18,7 @@
18 18
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 19
  */
20 20
 
21
+#define _SVID_SOURCE //needed for MAP_ANONYMOUS
21 22
 #include <inttypes.h>
22 23
 #include <string.h>
23 24
 #include <math.h>