Mercurial > mplayer.hg
annotate libmpcodecs/vf_yvu9.c @ 22830:1d4a455af876
Set CONFIG_EBP_AVAILABLE, CONFIG_EBX_AVAILABLE for FFmpeg
After FFmpeg r8549 these variables are used in libavcodec to determine
whether x86 inline asm sections using these registers or requiring a
certain total number of total free registers are enabled. Because they
were not set by MPlayer configure some H264 decoding optimizations were
disabled after that FFmpeg version. This change sets the variables to
true unconditionally which should restore previous behavior. Adding
proper detection is left for later.
EBX should always be available because internal libavcodec is never
compiled with PIC. However if -fomit-frame-pointer is not used because
of --enable-debug then EBP is not available. Thus proper detection would
be preferable to fix compilation with --enable-debug on x86. Currently
the variables are also set on non-x86 which should be harmless even if
somewhat ugly.
author | uau |
---|---|
date | Fri, 30 Mar 2007 22:57:04 +0000 |
parents | 497ebe3ecc2b |
children | a124f3abc1ec |
rev | line source |
---|---|
6485 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
17012 | 6 #include "config.h" |
7 #include "mp_msg.h" | |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17906
diff
changeset
|
8 #include "help_mp.h" |
6485 | 9 |
10 #include "img_format.h" | |
11 #include "mp_image.h" | |
12 #include "vf.h" | |
13 | |
17012 | 14 #include "libvo/fastmemcpy.h" |
6485 | 15 |
16 //===========================================================================// | |
17 | |
18 static int config(struct vf_instance_s* vf, | |
19 int width, int height, int d_width, int d_height, | |
20 unsigned int flags, unsigned int outfmt){ | |
21 | |
22 if(vf_next_query_format(vf,IMGFMT_YV12)<=0){ | |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17906
diff
changeset
|
23 mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_WarnNextFilterDoesntSupport, "YVU9"); |
6485 | 24 return 0; |
25 } | |
26 | |
27 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YV12); | |
28 } | |
29 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
30 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ |
6485 | 31 mp_image_t *dmpi; |
6504
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
32 int y,w,h; |
6485 | 33 |
34 // hope we'll get DR buffer: | |
35 dmpi=vf_get_image(vf->next,IMGFMT_YV12, | |
36 MP_IMGTYPE_TEMP, 0/*MP_IMGFLAG_ACCEPT_STRIDE*/, | |
37 mpi->w, mpi->h); | |
38 | |
6504
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
39 for(y=0;y<mpi->h;y++) |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
40 memcpy(dmpi->planes[0]+dmpi->stride[0]*y, |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
41 mpi->planes[0]+mpi->stride[0]*y, |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
42 mpi->w); |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
43 |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
44 w=mpi->w/4; h=mpi->h/2; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
45 for(y=0;y<h;y++){ |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
46 unsigned char* s=mpi->planes[1]+mpi->stride[1]*(y>>1); |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
47 unsigned char* d=dmpi->planes[1]+dmpi->stride[1]*y; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
48 int x; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
49 for(x=0;x<w;x++) d[2*x]=d[2*x+1]=s[x]; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
50 } |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
51 for(y=0;y<h;y++){ |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
52 unsigned char* s=mpi->planes[2]+mpi->stride[2]*(y>>1); |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
53 unsigned char* d=dmpi->planes[2]+dmpi->stride[2]*y; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
54 int x; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
55 for(x=0;x<w;x++) d[2*x]=d[2*x+1]=s[x]; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
56 } |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
57 |
9934 | 58 vf_clone_mpi_attributes(dmpi, mpi); |
6485 | 59 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
60 return vf_next_put_image(vf,dmpi, pts); |
6485 | 61 } |
62 | |
63 //===========================================================================// | |
64 | |
65 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
6524 | 66 if (fmt == IMGFMT_YVU9 || fmt == IMGFMT_IF09) |
6485 | 67 return vf_next_query_format(vf,IMGFMT_YV12) & (~VFCAP_CSP_SUPPORTED_BY_HW); |
68 return 0; | |
69 } | |
70 | |
71 static int open(vf_instance_t *vf, char* args){ | |
72 vf->config=config; | |
73 vf->put_image=put_image; | |
74 vf->query_format=query_format; | |
75 return 1; | |
76 } | |
77 | |
78 vf_info_t vf_info_yvu9 = { | |
79 "fast YVU9->YV12 conversion", | |
80 "yvu9", | |
81 "alex", | |
82 "", | |
9593
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
7368
diff
changeset
|
83 open, |
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
7368
diff
changeset
|
84 NULL |
6485 | 85 }; |
86 | |
87 //===========================================================================// |