diff options
Diffstat (limited to 'v4l_experimental/pvrusb2/pvrusb2-encoder.c')
-rw-r--r-- | v4l_experimental/pvrusb2/pvrusb2-encoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/v4l_experimental/pvrusb2/pvrusb2-encoder.c b/v4l_experimental/pvrusb2/pvrusb2-encoder.c index e935eaead..293997b36 100644 --- a/v4l_experimental/pvrusb2/pvrusb2-encoder.c +++ b/v4l_experimental/pvrusb2/pvrusb2-encoder.c @@ -1,6 +1,6 @@ /* * - * $Id: pvrusb2-encoder.c,v 1.2 2005/11/29 14:10:44 mchehab Exp $ + * $Id: pvrusb2-encoder.c,v 1.3 2005/11/29 19:49:09 mchehab Exp $ * * Copyright (C) 2005 Mike Isely <isely@pobox.com> * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr> @@ -470,7 +470,7 @@ int pvr2_encoder_configure(struct pvr2_hdw *hdw) (u32) (hdw->controls[PVR2_CID_PEAKVIDEOBITRATE].value) / 400); /* setup GOP structure (GOP size = 0f or 0c, 3-1 = 2 B-frames) */ ret |= pvr2_write_encoder_vcmd(hdw, IVTV_API_ASSIGN_GOP_PROPERTIES, 2, - is_ntsc ? 0x0f : 0x0c, 0x03); + is_30fps ? 0x0f : 0x0c, 0x03); /* enable 3:2 pulldown */ ret |= pvr2_write_encoder_vcmd(hdw,IVTV_API_ASSIGN_3_2_PULLDOWN,1,0); |