1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-18 17:40:30 +00:00

prevent the libdv decoder from adding "NTSC setup" on decode

patch by Dan Dennedy <dan@dennedy.org>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11812 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
attila 2004-01-20 05:39:12 +00:00
parent 3d8e9dc04a
commit 5ac6e2092c

View File

@ -91,7 +91,7 @@ static int vf_open(vf_instance_t *vf, char* args){
memset(vf->priv,0,sizeof(struct vf_priv_s));
vf->priv->mux=(muxer_stream_t*)args;
vf->priv->enc=dv_encoder_new(1,1,1); // FIXME, parse some options!
vf->priv->enc=dv_encoder_new(0,1,1); // FIXME, parse some options!
if(!vf->priv->enc) return 0;
mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));