summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-18 14:49:06 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-18 14:49:06 +0000
commit48ecb3e717979195d45c691366da422fb7b06f90 (patch)
treee1b55aeaf9ccc75aee6952c6c40c73bf9034b841 /libmpcodecs/vf.c
parentdb1804fcac42a4cbec012c64efabfbc1b2e9fc7f (diff)
downloadmpv-48ecb3e717979195d45c691366da422fb7b06f90.tar.bz2
mpv-48ecb3e717979195d45c691366da422fb7b06f90.tar.xz
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 :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10664 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 861b128ec7..d50e52aeec 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -439,7 +439,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->fields = src->fields;
dst->qscale_type= src->qscale_type;
if(dst->width == src->width && dst->height == src->height){
dst->qstride= src->qstride;