2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include "img_format.h"
30 #include "vd_ffmpeg.h"
31 #include "libavcodec/avcodec.h"
40 /* Support for avcodec's built-in deinterlacer.
44 //===========================================================================//
47 /* Convert mplayer's IMGFMT_* to avcodec's PIX_FMT_* for the supported
48 * IMGFMT's, and return -1 if the deinterlacer doesn't support
49 * that format (-1 because 0 is a valid PIX_FMT).
51 /* The deinterlacer supports planer 4:2:0, 4:2:2, and 4:4:4 YUV */
53 imgfmt_to_pixfmt (int imgfmt
)
57 /* I hope I got all the supported formats */
63 return PIX_FMT_YUV420P
;
77 return PIX_FMT_YUV422P
;
81 /* Are there any _planar_ YUV 4:4:4 formats? */
90 config (struct vf_instance
*vf
,
91 int width
, int height
, int d_width
, int d_height
,
92 unsigned int flags
, unsigned int outfmt
)
94 struct vf_priv_s
*priv
= vf
->priv
;
96 priv
->pix_fmt
= imgfmt_to_pixfmt(outfmt
);
97 if(priv
->pix_fmt
== -1)
100 /* The deinterlacer will fail if this is false */
101 if ((width
& 3) != 0 || (height
& 3) != 0)
104 /* If we get here, the deinterlacer is guaranteed not to fail */
107 priv
->height
= height
;
109 return vf_next_config(vf
,
116 put_image (struct vf_instance
*vf
, mp_image_t
*mpi
, double pts
)
118 struct vf_priv_s
*priv
= vf
->priv
;
121 AVPicture lavc_picture
;
123 lavc_picture
.data
[0] = mpi
->planes
[0];
124 lavc_picture
.data
[1] = mpi
->planes
[1];
125 lavc_picture
.data
[2] = mpi
->planes
[2];
126 lavc_picture
.linesize
[0] = mpi
->stride
[0];
127 lavc_picture
.linesize
[1] = mpi
->stride
[1];
128 lavc_picture
.linesize
[2] = mpi
->stride
[2];
130 dmpi
= vf_get_image(vf
->next
, mpi
->imgfmt
,
131 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
,
132 priv
->width
, priv
->height
);
134 pic
.data
[0] = dmpi
->planes
[0];
135 pic
.data
[1] = dmpi
->planes
[1];
136 pic
.data
[2] = dmpi
->planes
[2];
137 pic
.linesize
[0] = dmpi
->stride
[0];
138 pic
.linesize
[1] = dmpi
->stride
[1];
139 pic
.linesize
[2] = dmpi
->stride
[2];
141 if (avpicture_deinterlace(&pic
, &lavc_picture
,
142 priv
->pix_fmt
, priv
->width
, priv
->height
) < 0)
144 /* This should not happen -- see config() */
148 return vf_next_put_image(vf
, dmpi
, pts
);
153 query_format (struct vf_instance
*vf
, unsigned int fmt
)
155 if(imgfmt_to_pixfmt(fmt
) == -1)
158 return vf_next_query_format(vf
,fmt
);
163 vf_open(vf_instance_t
*vf
, char *args
)
165 /* We don't have any args */
169 vf
->put_image
= put_image
;
170 vf
->query_format
= query_format
;
171 vf
->priv
= malloc(sizeof(struct vf_priv_s
));
172 memset(vf
->priv
,0,sizeof(struct vf_priv_s
));
174 /* This may not technically be necessary just for a deinterlace,
175 * but it seems like a good idea.
183 const vf_info_t vf_info_lavcdeint
= {
184 "libavcodec's deinterlacing filter",
187 "libavcodec's internal deinterlacer, in case you don't like "
188 "the builtin ones (invoked with -pp or -npp)",
194 //===========================================================================//