annotate libmpcodecs/vf.c @ 10663:711159267b2d

clean up field flags: 1) cosmetic change, no reason these need to be mpeg2-specific 2) add a flag to tell when fields are ordered, so we don't have to assume bff (which would usually be wrong) when field flags are not available. 3) add other flags for future use :)
author rfelker
date Mon, 18 Aug 2003 14:49:06 +0000
parents 07cfe1e1a2c9
children d47ca466c97b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
1 #include <stdio.h>
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
2 #include <stdlib.h>
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
3 #include <string.h>
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
4
7127
1e47c2e7aa8e mostly compiler warning fixes, some small bugfix
arpi
parents: 7062
diff changeset
5 #include "../config.h"
6188
39a9515c633a warning fixes, patch by Ulrich Hecht <uli@suse.de>
arpi
parents: 6138
diff changeset
6 #ifdef HAVE_MALLOC_H
39a9515c633a warning fixes, patch by Ulrich Hecht <uli@suse.de>
arpi
parents: 6138
diff changeset
7 #include <malloc.h>
39a9515c633a warning fixes, patch by Ulrich Hecht <uli@suse.de>
arpi
parents: 6138
diff changeset
8 #endif
39a9515c633a warning fixes, patch by Ulrich Hecht <uli@suse.de>
arpi
parents: 6138
diff changeset
9
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
10 #include "../mp_msg.h"
6994
c7d6b72b6fc0 messages moved from vf.c and vd.c
jaf
parents: 6993
diff changeset
11 #include "../help_mp.h"
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
12 #include "../m_option.h"
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
13 #include "../m_struct.h"
6994
c7d6b72b6fc0 messages moved from vf.c and vd.c
jaf
parents: 6993
diff changeset
14
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
15
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5594
diff changeset
16 #include "img_format.h"
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5594
diff changeset
17 #include "mp_image.h"
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
18 #include "vf.h"
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
19
10140
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
20 #include "../libvo/fastmemcpy.h"
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
21
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
22 extern vf_info_t vf_info_vo;
6820
a99c7700e4f1 New plugin to test crop parameters. Arguments are the same as for the
kmkaplan
parents: 6708
diff changeset
23 extern vf_info_t vf_info_rectangle;
9832
298e261aecd7 disable vf_bmovl for systems without posix select
faust3
parents: 9593
diff changeset
24 #ifndef HAVE_NO_POSIX_SELECT
7855
fe88f7403d64 -vop bmovl - BitMap OVerLay videofilter for MPlayer
arpi
parents: 7755
diff changeset
25 extern vf_info_t vf_info_bmovl;
9832
298e261aecd7 disable vf_bmovl for systems without posix select
faust3
parents: 9593
diff changeset
26 #endif
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
27 extern vf_info_t vf_info_crop;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
28 extern vf_info_t vf_info_expand;
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents: 5508
diff changeset
29 extern vf_info_t vf_info_pp;
5522
545c13161589 swscale filter
arpi
parents: 5512
diff changeset
30 extern vf_info_t vf_info_scale;
5845
265acdb8542d Correct my half reverse commit. Sorry Atmos.
albeu
parents: 5843
diff changeset
31 #ifdef USE_LIBFAME
5536
3cd118559307 vf_fame added - yv12->mpes converter
arpi
parents: 5529
diff changeset
32 extern vf_info_t vf_info_fame;
5845
265acdb8542d Correct my half reverse commit. Sorry Atmos.
albeu
parents: 5843
diff changeset
33 #endif
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents: 5536
diff changeset
34 extern vf_info_t vf_info_format;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents: 5536
diff changeset
35 extern vf_info_t vf_info_yuy2;
5557
2d0b4090497f new filter: flip
arpi
parents: 5550
diff changeset
36 extern vf_info_t vf_info_flip;
5594
dc8ebd9736f4 rgb2bgr converter
arpi
parents: 5565
diff changeset
37 extern vf_info_t vf_info_rgb2bgr;
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents: 5668
diff changeset
38 extern vf_info_t vf_info_rotate;
5763
e9fb293c53d2 Complement existing filters - rotate and flip.
eyck
parents: 5737
diff changeset
39 extern vf_info_t vf_info_mirror;
5774
a300966abeb6 8bpp paletted -> 15/16/24/32 converter
arpi
parents: 5763
diff changeset
40 extern vf_info_t vf_info_palette;
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents: 5845
diff changeset
41 extern vf_info_t vf_info_lavc;
6000
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
42 extern vf_info_t vf_info_dvbscale;
6061
5343ef6b8c23 new filter, to detect best crop size
arpi
parents: 6000
diff changeset
43 extern vf_info_t vf_info_cropdetect;
6278
a88b82461c17 test pattern filter
michael
parents: 6188
diff changeset
44 extern vf_info_t vf_info_test;
6424
83032783f65d noise generating filter
michael
parents: 6278
diff changeset
45 extern vf_info_t vf_info_noise;
6486
c0d84f46d349 yvu9 support
alex
parents: 6424
diff changeset
46 extern vf_info_t vf_info_yvu9;
6859
ed26b2d781e9 new filter to use libavcodec's deinterlacer
arpi
parents: 6820
diff changeset
47 extern vf_info_t vf_info_lavcdeint;
7062
9eae15166ebb soft video equalizer filter, currently supports brightness and
rfelker
parents: 6997
diff changeset
48 extern vf_info_t vf_info_eq;
7517
9d433771b6d0 -vf eq2, LUT-based brightness/contrast/gamma correction (Y-only)
arpi
parents: 7369
diff changeset
49 extern vf_info_t vf_info_eq2;
7155
66019eb62edc "halfpack" (yuv planar 4:2:0 -> packed 4:2:2, half height) video filter
rfelker
parents: 7127
diff changeset
50 extern vf_info_t vf_info_halfpack;
7369
b34b005ab4f8 drop-deinterlace (dint) filter by Andriy N. Gritsenko <andrej@lucky.net>
arpi
parents: 7368
diff changeset
51 extern vf_info_t vf_info_dint;
7755
7637b72ef1f9 new filter: 1bpp - converts 1bpp image to yuv/rgb 8/16/32 bpp
arpi
parents: 7697
diff changeset
52 extern vf_info_t vf_info_1bpp;
7919
b8acdbfd0882 2xSai filter... just for fun, imho useless
arpi
parents: 7855
diff changeset
53 extern vf_info_t vf_info_2xsai;
7966
a03235a5f395 new video filter: unsharp - does image (l/c/l+c) sharping/bluring
arpi
parents: 7919
diff changeset
54 extern vf_info_t vf_info_unsharp;
8002
84ff79ba83f0 (useless) UV plane swapper
michael
parents: 7979
diff changeset
55 extern vf_info_t vf_info_swapuv;
8004
30789258ca66 (de)interleave filter (can be used to split/merge an interlaced image so other non interlaced filters an be used with idividual fields)
michael
parents: 8002
diff changeset
56 extern vf_info_t vf_info_il;
8010
329e9a5a154f boxblur, another useless filter
michael
parents: 8004
diff changeset
57 extern vf_info_t vf_info_boxblur;
8100
fd0da9a7d2e3 shape adaptive blur (slightly slow though)
michael
parents: 8010
diff changeset
58 extern vf_info_t vf_info_sab;
8106
7aa3dba949f1 smartblur
michael
parents: 8100
diff changeset
59 extern vf_info_t vf_info_smartblur;
8112
6d97e935a071 perspective correcture filter
michael
parents: 8106
diff changeset
60 extern vf_info_t vf_info_perspective;
9404
7a43a52b9f60 down3dright filter by kabi (converts between 2 common stereoscopic systems)
michael
parents: 9179
diff changeset
61 extern vf_info_t vf_info_down3dright;
9072
d7237ee9db7f new video filter to extract a single field using stride arithmetic,
rfelker
parents: 8631
diff changeset
62 extern vf_info_t vf_info_field;
9179
e93a0dd3ed56 new video filter: denoise3d - temporal&spatial noise reduction
arpi
parents: 9072
diff changeset
63 extern vf_info_t vf_info_denoise3d;
9441
85fa92f14e99 vf_hqdn3d: High-Quality version of the denoise3d filter
arpi
parents: 9404
diff changeset
64 extern vf_info_t vf_info_hqdn3d;
9467
9fae4150ec43 experimental de-telecine filter. not documented or configurable yet,
rfelker
parents: 9441
diff changeset
65 extern vf_info_t vf_info_detc;
9468
356963ad4784 filter for applying 3:2 telecine to 23.976 fps progressive material.
rfelker
parents: 9467
diff changeset
66 extern vf_info_t vf_info_telecine;
10571
07cfe1e1a2c9 'tinterlace' filter (partial inverse of tfields) by Not Zed <notzed@ximian.com> (with minor fixes for current cvs by me)
alex
parents: 10510
diff changeset
67 extern vf_info_t vf_info_tinterlace;
9514
08264c647f46 new filter
rfelker
parents: 9490
diff changeset
68 extern vf_info_t vf_info_tfields;
9933
3548701a13fe 1. new alternate approach to inverse telecine! much better!
rfelker
parents: 9832
diff changeset
69 extern vf_info_t vf_info_ivtc;
3548701a13fe 1. new alternate approach to inverse telecine! much better!
rfelker
parents: 9832
diff changeset
70 extern vf_info_t vf_info_ilpack;
10006
6293e6f02fe3 display size/aspect adjusting filter
rfelker
parents: 9934
diff changeset
71 extern vf_info_t vf_info_dsize;
10150
b34ede44dada new filter for dropping (near-)duplicate frames. can be used to fix
rfelker
parents: 10140
diff changeset
72 extern vf_info_t vf_info_decimate;
10510
73b3e4336cd4 Add mpeg2_flags to mp_image_t, copy flags in vd_libmpeg2.c,
ranma
parents: 10424
diff changeset
73 extern vf_info_t vf_info_softpulldown;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
74
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
75 // list of available filters:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
76 static vf_info_t* filter_list[]={
6820
a99c7700e4f1 New plugin to test crop parameters. Arguments are the same as for the
kmkaplan
parents: 6708
diff changeset
77 &vf_info_rectangle,
9832
298e261aecd7 disable vf_bmovl for systems without posix select
faust3
parents: 9593
diff changeset
78 #ifndef HAVE_NO_POSIX_SELECT
7855
fe88f7403d64 -vop bmovl - BitMap OVerLay videofilter for MPlayer
arpi
parents: 7755
diff changeset
79 &vf_info_bmovl,
9832
298e261aecd7 disable vf_bmovl for systems without posix select
faust3
parents: 9593
diff changeset
80 #endif
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
81 &vf_info_crop,
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
82 &vf_info_expand,
9531
46340b0f5a91 fix for a couple of linking problems patch by (Ambrose Li <a.c.li at ieee dot org>)
michael
parents: 9514
diff changeset
83 #ifdef USE_LIBAVCODEC
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents: 5508
diff changeset
84 &vf_info_pp,
9531
46340b0f5a91 fix for a couple of linking problems patch by (Ambrose Li <a.c.li at ieee dot org>)
michael
parents: 9514
diff changeset
85 #endif
5522
545c13161589 swscale filter
arpi
parents: 5512
diff changeset
86 &vf_info_scale,
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
87 // &vf_info_osd,
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
88 &vf_info_vo,
5845
265acdb8542d Correct my half reverse commit. Sorry Atmos.
albeu
parents: 5843
diff changeset
89 #ifdef USE_LIBFAME
5536
3cd118559307 vf_fame added - yv12->mpes converter
arpi
parents: 5529
diff changeset
90 &vf_info_fame,
5845
265acdb8542d Correct my half reverse commit. Sorry Atmos.
albeu
parents: 5843
diff changeset
91 #endif
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents: 5536
diff changeset
92 &vf_info_format,
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents: 5536
diff changeset
93 &vf_info_yuy2,
5557
2d0b4090497f new filter: flip
arpi
parents: 5550
diff changeset
94 &vf_info_flip,
5594
dc8ebd9736f4 rgb2bgr converter
arpi
parents: 5565
diff changeset
95 &vf_info_rgb2bgr,
5696
4a042adc5bd1 rotation/mirror filter
arpi
parents: 5668
diff changeset
96 &vf_info_rotate,
5763
e9fb293c53d2 Complement existing filters - rotate and flip.
eyck
parents: 5737
diff changeset
97 &vf_info_mirror,
5774
a300966abeb6 8bpp paletted -> 15/16/24/32 converter
arpi
parents: 5763
diff changeset
98 &vf_info_palette,
5874
arpi
parents: 5873
diff changeset
99 #ifdef USE_LIBAVCODEC
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents: 5845
diff changeset
100 &vf_info_lavc,
6859
ed26b2d781e9 new filter to use libavcodec's deinterlacer
arpi
parents: 6820
diff changeset
101 &vf_info_lavcdeint,
5874
arpi
parents: 5873
diff changeset
102 #endif
6000
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
103 &vf_info_dvbscale,
6061
5343ef6b8c23 new filter, to detect best crop size
arpi
parents: 6000
diff changeset
104 &vf_info_cropdetect,
6278
a88b82461c17 test pattern filter
michael
parents: 6188
diff changeset
105 &vf_info_test,
6424
83032783f65d noise generating filter
michael
parents: 6278
diff changeset
106 &vf_info_noise,
6486
c0d84f46d349 yvu9 support
alex
parents: 6424
diff changeset
107 &vf_info_yvu9,
7062
9eae15166ebb soft video equalizer filter, currently supports brightness and
rfelker
parents: 6997
diff changeset
108 &vf_info_eq,
7517
9d433771b6d0 -vf eq2, LUT-based brightness/contrast/gamma correction (Y-only)
arpi
parents: 7369
diff changeset
109 &vf_info_eq2,
7155
66019eb62edc "halfpack" (yuv planar 4:2:0 -> packed 4:2:2, half height) video filter
rfelker
parents: 7127
diff changeset
110 &vf_info_halfpack,
7369
b34b005ab4f8 drop-deinterlace (dint) filter by Andriy N. Gritsenko <andrej@lucky.net>
arpi
parents: 7368
diff changeset
111 &vf_info_dint,
7755
7637b72ef1f9 new filter: 1bpp - converts 1bpp image to yuv/rgb 8/16/32 bpp
arpi
parents: 7697
diff changeset
112 &vf_info_1bpp,
7919
b8acdbfd0882 2xSai filter... just for fun, imho useless
arpi
parents: 7855
diff changeset
113 &vf_info_2xsai,
7966
a03235a5f395 new video filter: unsharp - does image (l/c/l+c) sharping/bluring
arpi
parents: 7919
diff changeset
114 &vf_info_unsharp,
8002
84ff79ba83f0 (useless) UV plane swapper
michael
parents: 7979
diff changeset
115 &vf_info_swapuv,
8004
30789258ca66 (de)interleave filter (can be used to split/merge an interlaced image so other non interlaced filters an be used with idividual fields)
michael
parents: 8002
diff changeset
116 &vf_info_il,
8010
329e9a5a154f boxblur, another useless filter
michael
parents: 8004
diff changeset
117 &vf_info_boxblur,
8100
fd0da9a7d2e3 shape adaptive blur (slightly slow though)
michael
parents: 8010
diff changeset
118 &vf_info_sab,
8106
7aa3dba949f1 smartblur
michael
parents: 8100
diff changeset
119 &vf_info_smartblur,
8112
6d97e935a071 perspective correcture filter
michael
parents: 8106
diff changeset
120 &vf_info_perspective,
9404
7a43a52b9f60 down3dright filter by kabi (converts between 2 common stereoscopic systems)
michael
parents: 9179
diff changeset
121 &vf_info_down3dright,
9072
d7237ee9db7f new video filter to extract a single field using stride arithmetic,
rfelker
parents: 8631
diff changeset
122 &vf_info_field,
9179
e93a0dd3ed56 new video filter: denoise3d - temporal&spatial noise reduction
arpi
parents: 9072
diff changeset
123 &vf_info_denoise3d,
9441
85fa92f14e99 vf_hqdn3d: High-Quality version of the denoise3d filter
arpi
parents: 9404
diff changeset
124 &vf_info_hqdn3d,
9467
9fae4150ec43 experimental de-telecine filter. not documented or configurable yet,
rfelker
parents: 9441
diff changeset
125 &vf_info_detc,
9468
356963ad4784 filter for applying 3:2 telecine to 23.976 fps progressive material.
rfelker
parents: 9467
diff changeset
126 &vf_info_telecine,
10571
07cfe1e1a2c9 'tinterlace' filter (partial inverse of tfields) by Not Zed <notzed@ximian.com> (with minor fixes for current cvs by me)
alex
parents: 10510
diff changeset
127 &vf_info_tinterlace,
9514
08264c647f46 new filter
rfelker
parents: 9490
diff changeset
128 &vf_info_tfields,
9933
3548701a13fe 1. new alternate approach to inverse telecine! much better!
rfelker
parents: 9832
diff changeset
129 &vf_info_ivtc,
3548701a13fe 1. new alternate approach to inverse telecine! much better!
rfelker
parents: 9832
diff changeset
130 &vf_info_ilpack,
10006
6293e6f02fe3 display size/aspect adjusting filter
rfelker
parents: 9934
diff changeset
131 &vf_info_dsize,
10150
b34ede44dada new filter for dropping (near-)duplicate frames. can be used to fix
rfelker
parents: 10140
diff changeset
132 &vf_info_decimate,
10510
73b3e4336cd4 Add mpeg2_flags to mp_image_t, copy flags in vd_libmpeg2.c,
ranma
parents: 10424
diff changeset
133 &vf_info_softpulldown,
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
134 NULL
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
135 };
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
136
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
137 // For the vf option
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
138 m_obj_settings_t* vf_settings = NULL;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
139 // For the vop option
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
140 m_obj_settings_t* vo_plugin_args = NULL;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
141 m_obj_list_t vf_obj_list = {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
142 (void**)filter_list,
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
143 M_ST_OFF(vf_info_t,name),
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
144 M_ST_OFF(vf_info_t,info),
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
145 M_ST_OFF(vf_info_t,opts)
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
146 };
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
147
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
148 //============================================================================
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
149 // mpi stuff:
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
150
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
151 void vf_mpi_clear(mp_image_t* mpi,int x0,int y0,int w,int h){
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
152 int y;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
153 if(mpi->flags&MP_IMGFLAG_PLANAR){
5668
978c6f78022e align yuv 4:2:0 y position by 2
arpi
parents: 5663
diff changeset
154 y0&=~1;h+=h&1;
5663
arpi
parents: 5661
diff changeset
155 if(x0==0 && w==mpi->width){
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
156 // full width clear:
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
157 memset(mpi->planes[0]+mpi->stride[0]*y0,0,mpi->stride[0]*h);
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
158 memset(mpi->planes[1]+mpi->stride[1]*(y0>>mpi->chroma_y_shift),128,mpi->stride[1]*(h>>mpi->chroma_y_shift));
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
159 memset(mpi->planes[2]+mpi->stride[2]*(y0>>mpi->chroma_y_shift),128,mpi->stride[2]*(h>>mpi->chroma_y_shift));
5668
978c6f78022e align yuv 4:2:0 y position by 2
arpi
parents: 5663
diff changeset
160 } else
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
161 for(y=y0;y<y0+h;y+=2){
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
162 memset(mpi->planes[0]+x0+mpi->stride[0]*y,0,w);
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
163 memset(mpi->planes[0]+x0+mpi->stride[0]*(y+1),0,w);
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
164 memset(mpi->planes[1]+(x0>>mpi->chroma_x_shift)+mpi->stride[1]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
165 memset(mpi->planes[2]+(x0>>mpi->chroma_x_shift)+mpi->stride[2]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
166 }
5668
978c6f78022e align yuv 4:2:0 y position by 2
arpi
parents: 5663
diff changeset
167 return;
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
168 }
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
169 // packed:
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
170 for(y=y0;y<y0+h;y++){
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
171 unsigned char* dst=mpi->planes[0]+mpi->stride[0]*y+(mpi->bpp>>3)*x0;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
172 if(mpi->flags&MP_IMGFLAG_YUV){
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 6081
diff changeset
173 unsigned int* p=(unsigned int*) dst;
5661
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
174 int size=(mpi->bpp>>3)*w/4;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
175 int i;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
176 if(mpi->flags&MP_IMGFLAG_SWAPPED){
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
177 for(i=0;i<size;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=0x00800080;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
178 for(;i<size;i++) p[i]=0x00800080;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
179 } else {
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
180 for(i=0;i<size;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=0x80008000;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
181 for(;i<size;i++) p[i]=0x80008000;
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
182 }
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
183 } else
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
184 memset(dst,0,(mpi->bpp>>3)*w);
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
185 }
42e002c565cf mpi clear func
arpi
parents: 5607
diff changeset
186 }
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
187
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
188 mp_image_t* vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
189 mp_image_t* mpi=NULL;
6875
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
190 int w2=(mp_imgflag&MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE)?((w+15)&(~15)):w;
6000
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
191
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
192 if(vf->put_image==vf_next_put_image){
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
193 // passthru mode, if the plugin uses the fallback/default put_image() code
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
194 return vf_get_image(vf->next,outfmt,mp_imgtype,mp_imgflag,w,h);
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
195 }
34e396477d36 passthru mode for filters which don't alter image just config parameters (query_format/control/config)
arpi
parents: 5874
diff changeset
196
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
197 // Note: we should call libvo first to check if it supports direct rendering
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
198 // and if not, then fallback to software buffers:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
199 switch(mp_imgtype){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
200 case MP_IMGTYPE_EXPORT:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
201 if(!vf->imgctx.export_images[0]) vf->imgctx.export_images[0]=new_mp_image(w2,h);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
202 mpi=vf->imgctx.export_images[0];
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
203 break;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
204 case MP_IMGTYPE_STATIC:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
205 if(!vf->imgctx.static_images[0]) vf->imgctx.static_images[0]=new_mp_image(w2,h);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
206 mpi=vf->imgctx.static_images[0];
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
207 break;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
208 case MP_IMGTYPE_TEMP:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
209 if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=new_mp_image(w2,h);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
210 mpi=vf->imgctx.temp_images[0];
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
211 break;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
212 case MP_IMGTYPE_IPB:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
213 if(!(mp_imgflag&MP_IMGFLAG_READABLE)){ // B frame:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
214 if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=new_mp_image(w2,h);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
215 mpi=vf->imgctx.temp_images[0];
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
216 break;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
217 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
218 case MP_IMGTYPE_IP:
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
219 if(!vf->imgctx.static_images[vf->imgctx.static_idx]) vf->imgctx.static_images[vf->imgctx.static_idx]=new_mp_image(w2,h);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
220 mpi=vf->imgctx.static_images[vf->imgctx.static_idx];
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
221 vf->imgctx.static_idx^=1;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
222 break;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
223 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
224 if(mpi){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
225 mpi->type=mp_imgtype;
10424
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
226 mpi->w=w; mpi->h=h;
6875
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
227 // keep buffer allocation status & color flags only:
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
228 // mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_DIRECT);
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
229 mpi->flags&=MP_IMGFLAG_ALLOCATED|MP_IMGFLAG_TYPE_DISPLAYED|MP_IMGFLAGMASK_COLORS;
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
230 // accept restrictions & draw_slice flags only:
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
231 mpi->flags|=mp_imgflag&(MP_IMGFLAGMASK_RESTRICTIONS|MP_IMGFLAG_DRAW_CALLBACK);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
232 if(!vf->draw_slice) mpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK;
8631
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
233 if(mpi->width!=w2 || mpi->height!=h){
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
234 // printf("vf.c: MPI parameters changed! %dx%d -> %dx%d \n", mpi->width,mpi->height,w2,h);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
235 if(mpi->flags&MP_IMGFLAG_ALLOCATED){
8631
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
236 if(mpi->width<w2 || mpi->height<h){
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
237 // need to re-allocate buffer memory:
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
238 free(mpi->planes[0]);
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
239 mpi->flags&=~MP_IMGFLAG_ALLOCATED;
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
240 printf("vf.c: have to REALLOCATE buffer memory :(\n");
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
241 }
10424
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
242 // } else {
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
243 } {
9532
0b4c387ddd4f hmm found this in my local tree ;)
michael
parents: 9531
diff changeset
244 mpi->width=w2; mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
0b4c387ddd4f hmm found this in my local tree ;)
michael
parents: 9531
diff changeset
245 mpi->height=h; mpi->chroma_height=(h + (1<<mpi->chroma_y_shift) - 1)>>mpi->chroma_y_shift;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
246 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
247 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
248 if(!mpi->bpp) mp_image_setfmt(mpi,outfmt);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
249 if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
250
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
251 // check libvo first!
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
252 if(vf->get_image) vf->get_image(vf,mpi);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
253
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
254 if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
6524
05cd2cf758e4 if09 support
alex
parents: 6523
diff changeset
255 // non-direct and not yet allocated image. allocate it!
6875
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
256
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
257 // check if codec prefer aligned stride:
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
258 if(mp_imgflag&MP_IMGFLAG_PREFER_ALIGNED_STRIDE){
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
259 int align=(mpi->flags&MP_IMGFLAG_PLANAR &&
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
260 mpi->flags&MP_IMGFLAG_YUV) ?
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
261 (8<<mpi->chroma_x_shift)-1 : 15; // -- maybe FIXME
7697
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
262 w2=((w+align)&(~align));
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
263 if(mpi->width!=w2){
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
264 // we have to change width... check if we CAN co it:
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
265 int flags=vf->query_format(vf,outfmt); // should not fail
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
266 if(!(flags&3)) mp_msg(MSGT_DECVIDEO,MSGL_WARN,"??? vf_get_image{vf->query_format(outfmt)} failed!\n");
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
267 // printf("query -> 0x%X \n",flags);
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
268 if(flags&VFCAP_ACCEPT_STRIDE){
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
269 mpi->width=w2;
9532
0b4c387ddd4f hmm found this in my local tree ;)
michael
parents: 9531
diff changeset
270 mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
7697
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
271 }
a3c57c0c4ae2 don't honor stride hints if the next filter(chain) doesn't support stride
arpi
parents: 7517
diff changeset
272 }
6875
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
273 }
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 6859
diff changeset
274
6524
05cd2cf758e4 if09 support
alex
parents: 6523
diff changeset
275 // IF09 - allocate space for 4. plane delta info - unused
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
276 if (mpi->imgfmt == IMGFMT_IF09)
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
277 {
6524
05cd2cf758e4 if09 support
alex
parents: 6523
diff changeset
278 mpi->planes[0]=memalign(64, mpi->bpp*mpi->width*(mpi->height+2)/8+
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
279 mpi->chroma_width*mpi->chroma_height);
10163
alex
parents: 10150
diff changeset
280 /* export delta table */
10165
b78e3adeb850 it's still a 10l bug + 10l to me for commiting sh*t first time, and originally I wrote that tooo, so now I'm at about 1000litres? And anyway, this code isn't used :)) No, Rich, no, I will not upload a clip showing me drinking that much cola :)<EOF>
alex
parents: 10163
diff changeset
281 mpi->planes[3]=mpi->planes[0]+(mpi->width*mpi->height)+2*(mpi->chroma_width*mpi->chroma_height);
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
282 }
6524
05cd2cf758e4 if09 support
alex
parents: 6523
diff changeset
283 else
05cd2cf758e4 if09 support
alex
parents: 6523
diff changeset
284 mpi->planes[0]=memalign(64, mpi->bpp*mpi->width*(mpi->height+2)/8);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
285 if(mpi->flags&MP_IMGFLAG_PLANAR){
6524
05cd2cf758e4 if09 support
alex
parents: 6523
diff changeset
286 // YV12/I420/YVU9/IF09. feel free to add other planar formats here...
10424
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
287 //if(!mpi->stride[0])
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
288 mpi->stride[0]=mpi->width;
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
289 //if(!mpi->stride[1])
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
290 mpi->stride[1]=mpi->stride[2]=mpi->chroma_width;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
291 if(mpi->flags&MP_IMGFLAG_SWAPPED){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
292 // I420/IYUV (Y,U,V)
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
293 mpi->planes[1]=mpi->planes[0]+mpi->width*mpi->height;
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
294 mpi->planes[2]=mpi->planes[1]+mpi->chroma_width*mpi->chroma_height;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
295 } else {
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
296 // YV12,YVU9,IF09 (Y,V,U)
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
297 mpi->planes[2]=mpi->planes[0]+mpi->width*mpi->height;
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
298 mpi->planes[1]=mpi->planes[2]+mpi->chroma_width*mpi->chroma_height;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
299 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
300 } else {
10424
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
301 //if(!mpi->stride[0])
783b09155fa4 3*100l (backported from g2)
arpi
parents: 10239
diff changeset
302 mpi->stride[0]=mpi->width*mpi->bpp/8;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
303 }
8631
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
304 // printf("clearing img!\n");
5663
arpi
parents: 5661
diff changeset
305 vf_mpi_clear(mpi,0,0,mpi->width,mpi->height);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
306 mpi->flags|=MP_IMGFLAG_ALLOCATED;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
307 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
308 }
9490
48ac3ce565ab start_slice() added - similar to get_image(), but is called when using slices
arpi
parents: 9468
diff changeset
309 if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)
48ac3ce565ab start_slice() added - similar to get_image(), but is called when using slices
arpi
parents: 9468
diff changeset
310 if(vf->start_slice) vf->start_slice(vf,mpi);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
311 if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
9490
48ac3ce565ab start_slice() added - similar to get_image(), but is called when using slices
arpi
parents: 9468
diff changeset
312 mp_msg(MSGT_DECVIDEO,MSGL_V,"*** [%s] %s%s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
313 vf->info->name,
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
314 (mpi->type==MP_IMGTYPE_EXPORT)?"Exporting":
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
315 ((mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating"),
9490
48ac3ce565ab start_slice() added - similar to get_image(), but is called when using slices
arpi
parents: 9468
diff changeset
316 (mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)?" (slices)":"",
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
317 mpi->width,mpi->height,mpi->bpp,
6708
8058078f1248 support for external pp by divx4. some fixes/cosmetics?
alex
parents: 6539
diff changeset
318 (mpi->flags&MP_IMGFLAG_YUV)?"YUV":((mpi->flags&MP_IMGFLAG_SWAPPED)?"BGR":"RGB"),
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
319 (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
320 mpi->bpp*mpi->width*mpi->height/8);
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
321 mp_msg(MSGT_DECVIDEO,MSGL_DBG2,"(imgfmt: %x, planes: %x,%x,%x strides: %d,%d,%d, chroma: %dx%d, shift: h:%d,v:%d)\n",
6486
c0d84f46d349 yvu9 support
alex
parents: 6424
diff changeset
322 mpi->imgfmt, mpi->planes[0], mpi->planes[1], mpi->planes[2],
6539
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
323 mpi->stride[0], mpi->stride[1], mpi->stride[2],
79b536a37e40 better planar support, chroma subsampling support and Y8/Y800 support
alex
parents: 6524
diff changeset
324 mpi->chroma_width, mpi->chroma_height, mpi->chroma_x_shift, mpi->chroma_y_shift);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
325 mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
326 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
327
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
328 }
8631
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
329 // printf("\rVF_MPI: %p %p %p %d %d %d \n",
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
330 // mpi->planes[0],mpi->planes[1],mpi->planes[2],
3edba4a36c81 (temporary?) fix for redundant buffer re-allocation
arpi
parents: 8367
diff changeset
331 // mpi->stride[0],mpi->stride[1],mpi->stride[2]);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
332 return mpi;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
333 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
334
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
335 //============================================================================
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
336
7979
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
337 // By default vf doesn't accept MPEGPES
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
338 static int vf_default_query_format(struct vf_instance_s* vf, unsigned int fmt){
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
339 if(fmt == IMGFMT_MPEGPES) return 0;
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
340 return vf_next_query_format(vf,fmt);
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
341 }
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
342
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
343 vf_instance_t* vf_open_plugin(vf_info_t** filter_list, vf_instance_t* next, char *name, char **args){
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
344 vf_instance_t* vf;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
345 int i;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
346 for(i=0;;i++){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
347 if(!filter_list[i]){
6993
c167153136b8 messages moved from vf.c and vd.c
jaf
parents: 6875
diff changeset
348 mp_msg(MSGT_VFILTER,MSGL_ERR,MSGTR_CouldNotFindVideoFilter,name);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
349 return NULL; // no such filter!
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
350 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
351 if(!strcmp(filter_list[i]->name,name)) break;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
352 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
353 vf=malloc(sizeof(vf_instance_t));
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
354 memset(vf,0,sizeof(vf_instance_t));
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
355 vf->info=filter_list[i];
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
356 vf->next=next;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
357 vf->config=vf_next_config;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
358 vf->control=vf_next_control;
7979
64f468cbedcd The default query_format shouldn't accept IMGFMT_MPEGPES
albeu
parents: 7966
diff changeset
359 vf->query_format=vf_default_query_format;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
360 vf->put_image=vf_next_put_image;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
361 vf->default_caps=VFCAP_ACCEPT_STRIDE;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
362 vf->default_reqs=0;
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
363 if(vf->info->opts) { // vf_vo get some special argument
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
364 m_struct_t* st = vf->info->opts;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
365 void* vf_priv = m_struct_alloc(st);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
366 int n;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
367 for(n = 0 ; args && args[2*n] ; n++)
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
368 m_struct_set(st,vf_priv,args[2*n],args[2*n+1]);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
369 vf->priv = vf_priv;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
370 args = NULL;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
371 } else // Otherwise we should have the '_oldargs_'
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
372 if(args && !strcmp(args[0],"_oldargs_"))
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
373 args = (char**)args[1];
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
374 else
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
375 args = NULL;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
376 if(vf->info->open(vf,(char*)args)>0) return vf; // Success!
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
377 free(vf);
6993
c167153136b8 messages moved from vf.c and vd.c
jaf
parents: 6875
diff changeset
378 mp_msg(MSGT_VFILTER,MSGL_ERR,MSGTR_CouldNotOpenVideoFilter,name);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
379 return NULL;
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
380 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
381
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
382 vf_instance_t* vf_open_filter(vf_instance_t* next, char *name, char **args){
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
383 if(args && strcmp(args[0],"_oldargs_")) {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
384 int i,l = 0;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
385 for(i = 0 ; args && args[2*i] ; i++)
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
386 l += 1 + strlen(args[2*i]) + 1 + strlen(args[2*i+1]);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
387 l += strlen(name);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
388 {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
389 char str[l+1];
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
390 char* p = str;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
391 p += sprintf(str,"%s",name);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
392 for(i = 0 ; args && args[2*i] ; i++)
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
393 p += sprintf(p," %s=%s",args[2*i],args[2*i+1]);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
394 mp_msg(MSGT_VFILTER,MSGL_INFO,MSGTR_OpeningVideoFilter "[%s]\n",str);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
395 }
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
396 } else if(strcmp(name,"vo")) {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
397 if(args && strcmp(args[0],"_oldargs_") == 0)
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
398 mp_msg(MSGT_VFILTER,MSGL_INFO,MSGTR_OpeningVideoFilter
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
399 "[%s=%s]\n", name,args[1]);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
400 else
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
401 mp_msg(MSGT_VFILTER,MSGL_INFO,MSGTR_OpeningVideoFilter
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
402 "[%s]\n", name);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
403 }
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
404 return vf_open_plugin(filter_list,next,name,args);
5550
7d1dfb59c6c0 encoders
arpi
parents: 5539
diff changeset
405 }
7d1dfb59c6c0 encoders
arpi
parents: 5539
diff changeset
406
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
407 //============================================================================
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
408
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
409 unsigned int vf_match_csp(vf_instance_t** vfp,unsigned int* list,unsigned int preferred){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
410 vf_instance_t* vf=*vfp;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
411 unsigned int* p;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
412 unsigned int best=0;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
413 int ret;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
414 if((p=list)) while(*p){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
415 ret=vf->query_format(vf,*p);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
416 mp_msg(MSGT_VFILTER,MSGL_V,"[%s] query(%s) -> %d\n",vf->info->name,vo_format_name(*p),ret&3);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
417 if(ret&2){ best=*p; break;} // no conversion -> bingo!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
418 if(ret&1 && !best) best=*p; // best with conversion
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
419 ++p;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
420 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
421 if(best) return best; // bingo, they have common csp!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
422 // ok, then try with scale:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
423 if(vf->info == &vf_info_scale) return 0; // avoid infinite recursion!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
424 vf=vf_open_filter(vf,"scale",NULL);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
425 if(!vf) return 0; // failed to init "scale"
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
426 // try the preferred csp first:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
427 if(preferred && vf->query_format(vf,preferred)) best=preferred; else
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
428 // try the list again, now with "scaler" :
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
429 if((p=list)) while(*p){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
430 ret=vf->query_format(vf,*p);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
431 mp_msg(MSGT_VFILTER,MSGL_V,"[%s] query(%s) -> %d\n",vf->info->name,vo_format_name(*p),ret&3);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
432 if(ret&2){ best=*p; break;} // no conversion -> bingo!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
433 if(ret&1 && !best) best=*p; // best with conversion
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
434 ++p;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
435 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
436 if(best) *vfp=vf; // else uninit vf !FIXME!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
437 return best;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
438 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
439
9934
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
440 void vf_clone_mpi_attributes(mp_image_t* dst, mp_image_t* src){
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
441 dst->pict_type= src->pict_type;
10663
711159267b2d clean up field flags:
rfelker
parents: 10571
diff changeset
442 dst->fields = src->fields;
9934
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
443 dst->qscale_type= src->qscale_type;
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
444 if(dst->width == src->width && dst->height == src->height){
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
445 dst->qstride= src->qstride;
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
446 dst->qscale= src->qscale;
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
447 }
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
448 }
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9933
diff changeset
449
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
450 int vf_next_config(struct vf_instance_s* vf,
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
451 int width, int height, int d_width, int d_height,
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
452 unsigned int voflags, unsigned int outfmt){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
453 int miss;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
454 int flags=vf->next->query_format(vf->next,outfmt);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
455 if(!flags){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
456 // hmm. colorspace mismatch!!!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
457 // let's insert the 'scale' filter, it does the job for us:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
458 vf_instance_t* vf2;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
459 if(vf->next->info==&vf_info_scale) return 0; // scale->scale
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
460 vf2=vf_open_filter(vf->next,"scale",NULL);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
461 if(!vf2) return 0; // shouldn't happen!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
462 vf->next=vf2;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
463 flags=vf->next->query_format(vf->next,outfmt);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
464 if(!flags){
6993
c167153136b8 messages moved from vf.c and vd.c
jaf
parents: 6875
diff changeset
465 mp_msg(MSGT_VFILTER,MSGL_ERR,MSGTR_CannotFindColorspace);
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
466 return 0; // FAIL
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
467 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
468 }
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 6081
diff changeset
469 mp_msg(MSGT_VFILTER,MSGL_V,"REQ: flags=0x%X req=0x%X \n",flags,vf->default_reqs);
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
470 miss=vf->default_reqs - (flags&vf->default_reqs);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
471 if(miss&VFCAP_ACCEPT_STRIDE){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
472 // vf requires stride support but vf->next doesn't support it!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
473 // let's insert the 'expand' filter, it does the job for us:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
474 vf_instance_t* vf2=vf_open_filter(vf->next,"expand",NULL);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
475 if(!vf2) return 0; // shouldn't happen!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
476 vf->next=vf2;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
477 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
478 return vf->next->config(vf->next,width,height,d_width,d_height,voflags,outfmt);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
479 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
480
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
481 int vf_next_control(struct vf_instance_s* vf, int request, void* data){
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
482 return vf->next->control(vf->next,request,data);
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
483 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
484
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
485 int vf_next_query_format(struct vf_instance_s* vf, unsigned int fmt){
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
486 int flags=vf->next->query_format(vf->next,fmt);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
487 if(flags) flags|=vf->default_caps;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5557
diff changeset
488 return flags;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
489 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
490
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7155
diff changeset
491 int vf_next_put_image(struct vf_instance_s* vf,mp_image_t *mpi){
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7155
diff changeset
492 return vf->next->put_image(vf->next,mpi);
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
493 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
494
8367
14af7d96df34 Fix draw_slice() in passthrough mode.
arpi
parents: 8112
diff changeset
495 void vf_next_draw_slice(struct vf_instance_s* vf,unsigned char** src, int * stride,int w, int h, int x, int y){
10140
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
496 if (vf->next->draw_slice) {
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
497 vf->next->draw_slice(vf->next,src,stride,w,h,x,y);
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
498 return;
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
499 }
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
500 if (!vf->dmpi) {
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
501 mp_msg(MSGT_VFILTER,MSGL_ERR,"draw_slice: dmpi not stored by vf_%s\n", vf->info->name);
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
502 return;
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
503 }
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
504 if (!(vf->dmpi->flags & MP_IMGFLAG_PLANAR)) {
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
505 memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+vf->dmpi->bpp/8*x,
10239
a4591b698f98 100l to me :(
rfelker
parents: 10165
diff changeset
506 src[0], vf->dmpi->bpp/8*w, h, vf->dmpi->stride[0], stride[0]);
10140
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
507 return;
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
508 }
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
509 memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+x, src[0],
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
510 w, h, vf->dmpi->stride[0], stride[0]);
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
511 memcpy_pic(vf->dmpi->planes[1]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[1]+(x>>vf->dmpi->chroma_x_shift),
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
512 src[1], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[1], stride[1]);
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
513 memcpy_pic(vf->dmpi->planes[2]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[2]+(x>>vf->dmpi->chroma_x_shift),
30cad6ad9dbc fix segfaults with slices. support slice rendering into a filter even
rfelker
parents: 10006
diff changeset
514 src[2], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[2], stride[2]);
8367
14af7d96df34 Fix draw_slice() in passthrough mode.
arpi
parents: 8112
diff changeset
515 }
14af7d96df34 Fix draw_slice() in passthrough mode.
arpi
parents: 8112
diff changeset
516
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
517 //============================================================================
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
518
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
519 vf_instance_t* append_filters(vf_instance_t* last){
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
520 vf_instance_t* vf;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
521 int i;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
522
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
523 // -vf take precedence over -vop
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
524 if(vf_settings) {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
525 // We want to add them in the 'right order'
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
526 for(i = 0 ; vf_settings[i].name ; i++)
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
527 /* NOP */;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
528 for(i-- ; i >= 0 ; i--) {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
529 //printf("Open filter %s\n",vf_settings[i].name);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
530 vf = vf_open_filter(last,vf_settings[i].name,vf_settings[i].attribs);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
531 if(vf) last=vf;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
532 }
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
533 } else if(vo_plugin_args) {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
534 for(i = 0 ; vo_plugin_args[i].name ; i++) {
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
535 vf = vf_open_filter(last,vo_plugin_args[i].name,
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
536 vo_plugin_args[i].attribs);
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
537 if(vf) last=vf;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
538 }
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
539 }
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9532
diff changeset
540 return last;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
541 }
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
542
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
543 //============================================================================
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
diff changeset
544
5737
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
545 void vf_uninit_filter(vf_instance_t* vf){
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
546 if(vf->uninit) vf->uninit(vf);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
547 free_mp_image(vf->imgctx.static_images[0]);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
548 free_mp_image(vf->imgctx.static_images[1]);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
549 free_mp_image(vf->imgctx.temp_images[0]);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
550 free_mp_image(vf->imgctx.export_images[0]);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
551 free(vf);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
552 }
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
553
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
554 void vf_uninit_filter_chain(vf_instance_t* vf){
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
555 while(vf){
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
556 vf_instance_t* next=vf->next;
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
557 vf_uninit_filter(vf);
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
558 vf=next;
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
559 }
de47aebf654c filters uninit
arpi
parents: 5696
diff changeset
560 }
6081
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
561
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
562 void vf_list_plugins(){
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
563 int i=0;
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
564 while(filter_list[i]){
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
565 mp_msg(MSGT_VFILTER,MSGL_INFO,"\t%-10s: %s\n",filter_list[i]->name,filter_list[i]->info);
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
566 i++;
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
567 }
47d6a4b0f971 -vop help, patch by Julian J. M. <bandit@telecable.es>
arpi
parents: 6061
diff changeset
568 }