annotate libmpcodecs/vf_flip.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 00fff9a3b735
children bbb6ebec87a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
1 #include <stdio.h>
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
2 #include <stdlib.h>
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
3 #include <string.h>
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
4
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15212
diff changeset
5 #include "config.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15212
diff changeset
6 #include "mp_msg.h"
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
7
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
8 #include "mp_image.h"
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
9 #include "vf.h"
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
10
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15212
diff changeset
11 #include "libvo/video_out.h"
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
12
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
13 //===========================================================================//
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
14
6137
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
15 static int config(struct vf_instance_s* vf,
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
16 int width, int height, int d_width, int d_height,
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
17 unsigned int flags, unsigned int outfmt){
15212
05aa13cdf92f replace VO and VF numeric flags with #defined identifiers
henry
parents: 10141
diff changeset
18 flags&=~VOFLAG_FLIPPING; // remove the FLIP flag
6137
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
19 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
20 }
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
21
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
22 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
23 if(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE){
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
24 // try full DR !
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
25 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
26 mpi->type, mpi->flags, mpi->width, mpi->height);
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
27 // set up mpi as a upside-down image of dmpi:
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
28 mpi->planes[0]=vf->dmpi->planes[0]+
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
29 vf->dmpi->stride[0]*(vf->dmpi->height-1);
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
30 mpi->stride[0]=-vf->dmpi->stride[0];
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
31 if(mpi->flags&MP_IMGFLAG_PLANAR){
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
32 mpi->planes[1]=vf->dmpi->planes[1]+
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
33 vf->dmpi->stride[1]*((vf->dmpi->height>>mpi->chroma_y_shift)-1);
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
34 mpi->stride[1]=-vf->dmpi->stride[1];
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
35 mpi->planes[2]=vf->dmpi->planes[2]+
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
36 vf->dmpi->stride[2]*((vf->dmpi->height>>mpi->chroma_y_shift)-1);
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
37 mpi->stride[2]=-vf->dmpi->stride[2];
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
38 }
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
39 mpi->flags|=MP_IMGFLAG_DIRECT;
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
40 mpi->priv=(void*)vf->dmpi;
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
41 }
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
42 }
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
43
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
44 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
45 if(mpi->flags&MP_IMGFLAG_DIRECT){
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7258
diff changeset
46 // we've used DR, so we're ready...
9279
12741a866acd fixed palette support
arpi
parents: 8126
diff changeset
47 if(!(mpi->flags&MP_IMGFLAG_PLANAR))
12741a866acd fixed palette support
arpi
parents: 8126
diff changeset
48 ((mp_image_t*)mpi->priv)->planes[1] = mpi->planes[1]; // passthrough rgb8 palette
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
49 return vf_next_put_image(vf,(mp_image_t*)mpi->priv, pts);
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
50 }
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
51
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
52 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
5691
arpi
parents: 5607
diff changeset
53 MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE,
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
54 mpi->width, mpi->height);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 25221
diff changeset
55
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
56 // set up mpi as a upside-down image of dmpi:
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
57 vf->dmpi->planes[0]=mpi->planes[0]+
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
58 mpi->stride[0]*(mpi->height-1);
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
59 vf->dmpi->stride[0]=-mpi->stride[0];
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
60 if(vf->dmpi->flags&MP_IMGFLAG_PLANAR){
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
61 vf->dmpi->planes[1]=mpi->planes[1]+
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6137
diff changeset
62 mpi->stride[1]*((mpi->height>>mpi->chroma_y_shift)-1);
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
63 vf->dmpi->stride[1]=-mpi->stride[1];
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
64 vf->dmpi->planes[2]=mpi->planes[2]+
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6137
diff changeset
65 mpi->stride[2]*((mpi->height>>mpi->chroma_y_shift)-1);
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
66 vf->dmpi->stride[2]=-mpi->stride[2];
7258
2a96fbce0848 bgr8 palette fixed
arpi
parents: 6539
diff changeset
67 } else
10141
7d6a854a5fe5 cleanup, use vf->dmpi rather than vf->priv->dmpi for consistency
rfelker
parents: 9593
diff changeset
68 vf->dmpi->planes[1]=mpi->planes[1]; // passthru bgr8 palette!!!
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 25221
diff changeset
69
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
70 return vf_next_put_image(vf,vf->dmpi, pts);
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
71 }
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
72
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
73 //===========================================================================//
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
74
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
75 static int open(vf_instance_t *vf, char* args){
6137
6253fc19afb1 do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents: 5691
diff changeset
76 vf->config=config;
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
77 vf->get_image=get_image;
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
78 vf->put_image=put_image;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
79 vf->default_reqs=VFCAP_ACCEPT_STRIDE;
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
80 return 1;
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
81 }
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
82
25221
00fff9a3b735 Make all vf_info_t structs const
reimar
parents: 17906
diff changeset
83 const vf_info_t vf_info_flip = {
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
84 "flip image upside-down",
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
85 "flip",
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
86 "A'rpi",
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
87 "",
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9279
diff changeset
88 open,
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9279
diff changeset
89 NULL
5557
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
90 };
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
91
2d0b4090497f new filter: flip
arpi
parents:
diff changeset
92 //===========================================================================//