summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-03 12:09:58 +0000
committerranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-03 12:09:58 +0000
commit9f62dfb2c810fd9043d41370cb343aa14e7680ba (patch)
treeb77f83c27d819210e95818705e2e9961297bc1da /libmpcodecs/vf.c
parent81df98523924656907a32991153864434cc8d124 (diff)
downloadmpv-9f62dfb2c810fd9043d41370cb343aa14e7680ba.tar.bz2
mpv-9f62dfb2c810fd9043d41370cb343aa14e7680ba.tar.xz
Add mpeg2_flags to mp_image_t, copy flags in vd_libmpeg2.c,
and add vf_softpulldown.c. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10511 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 65ef16c94d..493696be90 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -69,6 +69,7 @@ extern vf_info_t vf_info_ivtc;
extern vf_info_t vf_info_ilpack;
extern vf_info_t vf_info_dsize;
extern vf_info_t vf_info_decimate;
+extern vf_info_t vf_info_softpulldown;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -127,6 +128,7 @@ static vf_info_t* filter_list[]={
&vf_info_ilpack,
&vf_info_dsize,
&vf_info_decimate,
+ &vf_info_softpulldown,
NULL
};
@@ -435,6 +437,7 @@ unsigned int vf_match_csp(vf_instance_t** vfp,unsigned int* list,unsigned int pr
void vf_clone_mpi_attributes(mp_image_t* dst, mp_image_t* src){
dst->pict_type= src->pict_type;
+ dst->mpeg2_flags = src->mpeg2_flags;
dst->qscale_type= src->qscale_type;
if(dst->width == src->width && dst->height == src->height){
dst->qstride= src->qstride;