]> git.sesse.net Git - vlc/blobdiff - modules/codec/schroedinger.c
Made vout_display_opengl_t private.
[vlc] / modules / codec / schroedinger.c
index 58fe20749456daefaf253ffd55876ec8f5f57eea..4d458bfc11e019586ae2fdf514e16fdbd01b2650 100644 (file)
@@ -3,12 +3,11 @@
  *          (http://www.bbc.co.uk/rd/projects/dirac/index.shtml)
  *          (http://diracvideo.org)
  *****************************************************************************
- * Copyright (C) 2008 the VideoLAN team
- * $Id$
+ * Copyright (C) 2008-2010 the VideoLAN team
  *
  * Authors: Jonathan Rosser <jonathan.rosser@gmail.com>
  *          David Flynn <davidf at rd dot bbc.co.uk>
- *          Anuradha Suraparaju <asuraparaju at gmail dot com>
+ *          Anuradha Suraparaju <asuraparaju at gmail dot com> (encoding)
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -136,7 +135,6 @@ vlc_module_begin ()
 
     ppsz_enc_options[i_numopts+2] = NULL;
 
-
 vlc_module_end ()
 
 /*****************************************************************************
@@ -824,7 +822,7 @@ static int OpenEncoder( vlc_object_t *p_this )
 
 
     b_tmp = var_GetBool( p_enc, ENC_CFG_PREFIX ENC_CODINGMODE );
-    if( b_tmp == true )
+    if( b_tmp )
         p_sys->b_auto_field_coding = true;
     else
         p_sys->b_auto_field_coding = false;
@@ -1139,3 +1137,4 @@ static void CloseEncoder( vlc_object_t *p_this )
 
     free( p_sys );
 }
+