[-]
[+]
|
Changed |
MPlayer.spec
|
|
[-]
[+]
|
Added |
MPlayer-x264_pkgconfig.patch
^
|
@@ -0,0 +1,12 @@
+--- configure.orig 2011-10-23 14:25:09.217000421 +0200
++++ configure 2011-10-23 14:36:14.046000420 +0200
+@@ -6913,7 +6913,8 @@
+ int main(void) { x264_encoder_open((void*)0); return 0; }
+ EOF
+ _x264=no
+- for ld_x264 in "-lx264 $ld_pthread" "-lx264 $ld_pthread" ; do
++ extra_cflags="`pkg-config --cflags x264` $extra_cflags"
++ for ld_x264 in "`pkg-config --variable=libdir --static x264`/libx264.a" "`pkg-config --libs x264`" "-lx264 $ld_pthread" "-lx264 $ld_pthread" ; do
+ cc_check $ld_x264 && libs_mencoder="$libs_mencoder $ld_x264" && _x264=yes && break
+ done
+ fi
|
[-]
[+]
|
Deleted |
ffmpeg-fix_missing_return_in_non_void_function.patch
^
|
@@ -1,19 +0,0 @@
---- libswscale/x86/yuv2rgb_template.c.orig 2011-04-11 23:00:32.000000000 +0200
-+++ libswscale/x86/yuv2rgb_template.c 2011-04-11 23:01:28.000000000 +0200
-@@ -406,6 +406,8 @@
- YUV2RGB_ENDLOOP(4)
- YUV2RGB_OPERANDS_ALPHA
- YUV2RGB_ENDFUNC
-+#else
-+ return srcSliceH;
- #endif
- }
-
-@@ -449,5 +451,7 @@
- YUV2RGB_ENDLOOP(4)
- YUV2RGB_OPERANDS_ALPHA
- YUV2RGB_ENDFUNC
-+#else
-+ return srcSliceH;
- #endif
- }
|
[-]
[+]
|
Added |
ffmpeg-fix_sequence-point.patch
^
|
@@ -0,0 +1,12 @@
+--- libavcodec/j2kenc.c.orig 2011-10-23 16:00:45.868000419 +0200
++++ libavcodec/j2kenc.c 2011-10-23 19:34:30.966000421 +0200
+@@ -869,7 +869,8 @@
+ int *ptr = t1.data[y-yy0];
+ for (x = xx0; x < xx1; x++){
+ *ptr = (comp->data[(comp->coord[0][1] - comp->coord[0][0]) * y + x]);
+- *ptr++ = (int64_t)*ptr * (int64_t)(8192 * 8192 / band->stepsize) >> 13 - NMSEDEC_FRACBITS;
++ *ptr = (int64_t)*ptr * (int64_t)(8192 * 8192 / band->stepsize) >> 13 - NMSEDEC_FRACBITS;
++ ptr++;
+ }
+ }
+ }
|
|
Changed |
MPlayer-1.0rc4_r34277.tar.bz2
^
|
[-]
[+]
|
Changed |
MPlayer-rpmlintrc
^
|
@@ -5,3 +5,5 @@
addFilter("no-rpm-opt-flags")
+setBadness('sequence-point', 0)
+
|
|
Added |
ffmpeg-49aa397414eb4dbe5da292fcdb8a6084f71ae949.tar.bz2
^
|
|
Deleted |
ffmpeg-c104a6e90226eaa253aeba471c8859e0da922da7.tar.bz2
^
|
|
Added |
x264-snapshot-20111029-2245.tar.bz2
^
|