Blame view

buildroot/buildroot-2016.08.1/package/gstreamer/gst-ffmpeg/0001-gcc47.patch 2.97 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  gst-ffmpeg libav: Fixes compiling gst-ffmpeg with gcc-4.7
  
  Fetch from: http://www.slackware.com/~alien/slackbuilds/gst-plugins-ffmpeg/build/gst-ffmpeg-0.10.13_gcc47.patch
  
  Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
  ---
  Submitted By: Andrew Benton <andy@benton.eu.com>
  Date: 2012-06-15
  Initial Package Version: 0.10.13
  Upstream Status: From upstream
  Origin:
  http://git.videolan.org/?p=ffmpeg.git;a=patch;h=5f654897e325349dacf2546674e0510bb72ecb50
  
  Description: Fixes compiling gst-ffmpeg with gcc-4.7
  
  libavcodec/x86/h264_qpel_mmx.c: Assembler messages:
  libavcodec/x86/h264_qpel_mmx.c:1294: Error: operand type mismatch for `cmp'
  libavcodec/x86/h264_qpel_mmx.c:1294: Error: operand type mismatch for `cmp'
  libavcodec/x86/h264_qpel_mmx.c:1298: Error: operand type mismatch for `cmp'
  libavcodec/x86/h264_qpel_mmx.c:1298: Error: operand type mismatch for `cmp'
  libavcodec/x86/h264_qpel_mmx.c:964: Error: operand type mismatch for `cmp'
  libavcodec/x86/h264_qpel_mmx.c:964: Error: operand type mismatch for `cmp'
  libavcodec/x86/h264_qpel_mmx.c:964: Error: operand type mismatch for `cmp'
  make[5]: *** [libavcodec/x86/dsputil_mmx.o] Error 1
  
  Index: gst-ffmpeg-0.10.13/gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c
  ===================================================================
  --- gst-ffmpeg-0.10.13.orig/gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c	2012-03-30 11:39:41.324522051 -0700
  +++ gst-ffmpeg-0.10.13/gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c	2012-03-30 11:54:08.152564075 -0700
  @@ -398,7 +398,7 @@
               "2:                         
  \t"\
               \
               : "+a"(src), "+c"(dst)\
  -            : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "g"(h)\
  +            : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "rm"(h)\
               : "memory"\
           );\
           src += 4-(h+5)*srcStride;\
  @@ -446,7 +446,7 @@
               QPEL_H264HV(%%mm3, %%mm4, %%mm5, %%mm0, %%mm1, %%mm2, 15*48)\
               "2:                     
  \t"\
               : "+a"(src)\
  -            : "c"(tmp), "S"((x86_reg)srcStride), "g"(size)\
  +            : "c"(tmp), "S"((x86_reg)srcStride), "rm"(size)\
               : "memory"\
               );\
           tmp += 4;\
  @@ -823,7 +823,7 @@
           "2:                          
  \t"\
           \
           : "+a"(src), "+c"(dst)\
  -        : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "g"(h)\
  +        : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "rm"(h)\
           : XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3", \
                          "%xmm4", "%xmm5", "%xmm6", "%xmm7",)\
             "memory"\
  @@ -878,7 +878,7 @@
               QPEL_H264HV_XMM(%%xmm3, %%xmm4, %%xmm5, %%xmm0, %%xmm1, %%xmm2, 15*48)
               "2:                         
  \t"
               : "+a"(src)
  -            : "c"(tmp), "S"((x86_reg)srcStride), "g"(size)
  +            : "c"(tmp), "S"((x86_reg)srcStride), "rm"(size)
               : XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3",
                              "%xmm4", "%xmm5", "%xmm6", "%xmm7",)
                 "memory"