Mercurial > mplayer.hg
annotate libmpcodecs/vf_format.c @ 6734:e614de962b6e
fixing fixmes
author | michael |
---|---|
date | Sun, 14 Jul 2002 21:30:54 +0000 |
parents | 8058078f1248 |
children | 0e6860ff93e3 |
rev | line source |
---|---|
5539 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
6 #include "../config.h" | |
7 #include "../mp_msg.h" | |
8 | |
5607 | 9 #include "img_format.h" |
10 #include "mp_image.h" | |
5539 | 11 #include "vf.h" |
12 | |
13 struct vf_priv_s { | |
14 unsigned int fmt; | |
15 }; | |
16 | |
17 //===========================================================================// | |
18 | |
19 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
20 if(fmt==vf->priv->fmt) | |
21 return vf_next_query_format(vf,fmt); | |
22 return 0; | |
23 } | |
24 | |
25 static int open(vf_instance_t *vf, char* args){ | |
26 vf->query_format=query_format; | |
6001 | 27 vf->default_caps=0; |
5539 | 28 vf->priv=malloc(sizeof(struct vf_priv_s)); |
29 | |
30 if(args){ | |
31 if(!strcasecmp(args,"yuy2")) vf->priv->fmt=IMGFMT_YUY2; else | |
32 if(!strcasecmp(args,"yv12")) vf->priv->fmt=IMGFMT_YV12; else | |
33 if(!strcasecmp(args,"i420")) vf->priv->fmt=IMGFMT_I420; else | |
6525 | 34 if(!strcasecmp(args,"yvu9")) vf->priv->fmt=IMGFMT_YVU9; else |
35 if(!strcasecmp(args,"if09")) vf->priv->fmt=IMGFMT_IF09; else | |
5539 | 36 if(!strcasecmp(args,"iyuv")) vf->priv->fmt=IMGFMT_IYUV; else |
37 if(!strcasecmp(args,"uyvy")) vf->priv->fmt=IMGFMT_UYVY; else | |
38 if(!strcasecmp(args,"bgr24")) vf->priv->fmt=IMGFMT_BGR24; else | |
39 if(!strcasecmp(args,"bgr32")) vf->priv->fmt=IMGFMT_BGR32; else | |
40 if(!strcasecmp(args,"bgr16")) vf->priv->fmt=IMGFMT_BGR16; else | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5539
diff
changeset
|
41 if(!strcasecmp(args,"bgr15")) vf->priv->fmt=IMGFMT_BGR15; else |
6525 | 42 if(!strcasecmp(args,"bgr8")) vf->priv->fmt=IMGFMT_BGR8; else |
6708
8058078f1248
support for external pp by divx4. some fixes/cosmetics?
alex
parents:
6525
diff
changeset
|
43 if(!strcasecmp(args,"rgb24")) vf->priv->fmt=IMGFMT_RGB24; else |
8058078f1248
support for external pp by divx4. some fixes/cosmetics?
alex
parents:
6525
diff
changeset
|
44 if(!strcasecmp(args,"rgb32")) vf->priv->fmt=IMGFMT_RGB32; else |
8058078f1248
support for external pp by divx4. some fixes/cosmetics?
alex
parents:
6525
diff
changeset
|
45 if(!strcasecmp(args,"rgb16")) vf->priv->fmt=IMGFMT_RGB16; else |
8058078f1248
support for external pp by divx4. some fixes/cosmetics?
alex
parents:
6525
diff
changeset
|
46 if(!strcasecmp(args,"rgb15")) vf->priv->fmt=IMGFMT_RGB15; else |
8058078f1248
support for external pp by divx4. some fixes/cosmetics?
alex
parents:
6525
diff
changeset
|
47 if(!strcasecmp(args,"rgb8")) vf->priv->fmt=IMGFMT_RGB8; else |
5539 | 48 { printf("Unknown format name: '%s'\n",args);return 0;} |
49 } else | |
50 vf->priv->fmt=IMGFMT_YUY2; | |
51 | |
52 return 1; | |
53 } | |
54 | |
55 vf_info_t vf_info_format = { | |
56 "force output format", | |
57 "format", | |
58 "A'rpi", | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5539
diff
changeset
|
59 "FIXME! get_image()/put_image()", |
5539 | 60 open |
61 }; | |
62 | |
63 //===========================================================================// |