annotate libmpcodecs/vf_rotate.c @ 37195:ac6c37d85d65 default tip

configure: Fix initialization of variable def_local_aligned_32 It contiained the #define of HAVE_LOCAL_ALIGNED_16 instead of HAVE_LOCAL_ALIGNED_32.
author al
date Sun, 28 Sep 2014 18:38:41 +0000
parents 7af3e6f901fd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30421
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
1 /*
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
2 * This file is part of MPlayer.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
3 *
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
5 * it under the terms of the GNU General Public License as published by
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
7 * (at your option) any later version.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
8 *
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
12 * GNU General Public License for more details.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
13 *
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
14 * You should have received a copy of the GNU General Public License along
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
17 */
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29263
diff changeset
18
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
19 #include <stdio.h>
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
20 #include <stdlib.h>
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
21 #include <string.h>
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
22 #include <inttypes.h>
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
23
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 9593
diff changeset
24 #include "config.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 9593
diff changeset
25 #include "mp_msg.h"
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
26
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
27 #include "img_format.h"
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
28 #include "mp_image.h"
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
29 #include "vf.h"
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
30
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
31 struct vf_priv_s {
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
32 int direction;
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
33 };
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
34
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
35 static void rotate(unsigned char* dst,unsigned char* src,int dststride,int srcstride,int w,int h,int bpp,int dir){
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
36 int y;
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
37 if(dir&1){
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
38 src+=srcstride*(w-1);
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
39 srcstride*=-1;
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
40 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
41 if(dir&2){
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
42 dst+=dststride*(h-1);
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
43 dststride*=-1;
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
44 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
45
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
46 for(y=0;y<h;y++){
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
47 int x;
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
48 switch(bpp){
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
49 case 1:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
50 for(x=0;x<w;x++) dst[x]=src[y+x*srcstride];
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
51 break;
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
52 case 2:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
53 for(x=0;x<w;x++) *((short*)(dst+x*2))=*((short*)(src+y*2+x*srcstride));
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
54 break;
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
55 case 3:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
56 for(x=0;x<w;x++){
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
57 dst[x*3+0]=src[0+y*3+x*srcstride];
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
58 dst[x*3+1]=src[1+y*3+x*srcstride];
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
59 dst[x*3+2]=src[2+y*3+x*srcstride];
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
60 }
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
61 break;
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
62 case 4:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
63 for(x=0;x<w;x++) *((int*)(dst+x*4))=*((int*)(src+y*4+x*srcstride));
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
64 }
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
65 dst+=dststride;
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
66 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
67 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
68
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
69 //===========================================================================//
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
70
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
71 static int config(struct vf_instance *vf,
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
72 int width, int height, int d_width, int d_height,
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
73 unsigned int flags, unsigned int outfmt){
7871
7b7254cf6553 automatic rotation for mode 4..7, based on
arpi
parents: 7368
diff changeset
74 if (vf->priv->direction & 4) {
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
75 if (width<height) vf->priv->direction&=3;
7871
7b7254cf6553 automatic rotation for mode 4..7, based on
arpi
parents: 7368
diff changeset
76 }
7b7254cf6553 automatic rotation for mode 4..7, based on
arpi
parents: 7368
diff changeset
77 if (vf->priv->direction & 4){
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
78 vf->put_image=vf_next_put_image; // passthru mode!
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
79 if (vf->next->draw_slice) vf->draw_slice=vf_next_draw_slice;
8367
14af7d96df34 Fix draw_slice() in passthrough mode.
arpi
parents: 7871
diff changeset
80 /* FIXME: this should be in an other procedure in vf.c; that should always check
14af7d96df34 Fix draw_slice() in passthrough mode.
arpi
parents: 7871
diff changeset
81 whether the filter after the passthrough one still (not)supports slices */
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
82 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
7871
7b7254cf6553 automatic rotation for mode 4..7, based on
arpi
parents: 7368
diff changeset
83 }
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
84 return vf_next_config(vf,height,width,d_height,d_width,flags,outfmt);
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
85 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
86
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
87 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
88 mp_image_t *dmpi;
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
89
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
90 // hope we'll get DR buffer:
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
91 dmpi=vf_get_image(vf->next,mpi->imgfmt,
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
92 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
93 mpi->h, mpi->w);
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
94
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
95 if(mpi->flags&MP_IMGFLAG_PLANAR){
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
96 rotate(dmpi->planes[0],mpi->planes[0],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
97 dmpi->stride[0],mpi->stride[0],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
98 dmpi->w,dmpi->h,1,vf->priv->direction);
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
99 rotate(dmpi->planes[1],mpi->planes[1],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
100 dmpi->stride[1],mpi->stride[1],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
101 dmpi->w>>mpi->chroma_x_shift,dmpi->h>>mpi->chroma_y_shift,1,vf->priv->direction);
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
102 rotate(dmpi->planes[2],mpi->planes[2],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
103 dmpi->stride[2],mpi->stride[2],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
104 dmpi->w>>mpi->chroma_x_shift,dmpi->h>>mpi->chroma_y_shift,1,vf->priv->direction);
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
105 } else {
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
106 rotate(dmpi->planes[0],mpi->planes[0],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
107 dmpi->stride[0],mpi->stride[0],
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
108 dmpi->w,dmpi->h,dmpi->bpp>>3,vf->priv->direction);
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
109 dmpi->planes[1] = mpi->planes[1]; // passthrough rgb8 palette
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
110 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 25221
diff changeset
111
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
112 return vf_next_put_image(vf,dmpi, pts);
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
113 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
114
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
115 //===========================================================================//
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
116
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
117 static int query_format(struct vf_instance *vf, unsigned int fmt){
8749
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
118 if(IMGFMT_IS_RGB(fmt) || IMGFMT_IS_BGR(fmt)) return vf_next_query_format(vf, fmt);
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
119 // we can support only symmetric (chroma_x_shift==chroma_y_shift) YUV formats:
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
120 switch(fmt) {
32702
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
121 case IMGFMT_YV12:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
122 case IMGFMT_I420:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
123 case IMGFMT_IYUV:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
124 case IMGFMT_YVU9:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
125 // case IMGFMT_IF09:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
126 case IMGFMT_Y8:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
127 case IMGFMT_Y800:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
128 case IMGFMT_444P:
7af3e6f901fd Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents: 30642
diff changeset
129 return vf_next_query_format(vf, fmt);
8749
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
130 }
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
131 return 0;
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
132 }
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
133
30638
a7b908875c14 Rename open() vf initialization function to vf_open().
diego
parents: 30421
diff changeset
134 static int vf_open(vf_instance_t *vf, char *args){
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
135 vf->config=config;
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
136 vf->put_image=put_image;
8749
8d29bc9a5836 cannot rotate non-symmetric yuv pixel formats
arpi
parents: 8367
diff changeset
137 vf->query_format=query_format;
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
138 vf->priv=malloc(sizeof(struct vf_priv_s));
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
139 vf->priv->direction=args?atoi(args):0;
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
140 return 1;
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
141 }
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
142
25221
00fff9a3b735 Make all vf_info_t structs const
reimar
parents: 23373
diff changeset
143 const vf_info_t vf_info_rotate = {
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
144 "rotate",
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
145 "rotate",
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
146 "A'rpi",
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
147 "",
30638
a7b908875c14 Rename open() vf initialization function to vf_open().
diego
parents: 30421
diff changeset
148 vf_open,
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9279
diff changeset
149 NULL
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
150 };
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
151
4a042adc5bd1 rotation/mirror filter
arpi
parents:
diff changeset
152 //===========================================================================//