]> git.sesse.net Git - vlc/commitdiff
Fix builds with dirac >= 0.9.0, require it as well.
authorPavlov Konstantin <thresh@videolan.org>
Mon, 28 Jan 2008 19:58:10 +0000 (19:58 +0000)
committerPavlov Konstantin <thresh@videolan.org>
Mon, 28 Jan 2008 19:58:10 +0000 (19:58 +0000)
configure.ac
modules/codec/dirac.c

index 069a5a28927128375ae6619f93f87be6687c66ce..684ea97d00114633bf6bceaf0c400a63350eef8a 100644 (file)
@@ -3692,7 +3692,7 @@ dnl
 AC_ARG_ENABLE(dirac,
 [  --enable-dirac          experimental dirac codec (default disabled)])
 if test "${enable_dirac}" = "yes"; then
-  PKG_CHECK_MODULES(DIRAC,[dirac >= 0.8.0], [
+  PKG_CHECK_MODULES(DIRAC,[dirac >= 0.9.0], [
       VLC_ADD_PLUGINS([dirac])
       VLC_ADD_CFLAGS([dirac],[$DIRAC_CFLAGS])
       VLC_ADD_LIBS([dirac],[$DIRAC_LIBS -lstdc++]) ],[
index 4572018d6c8ba08812c781b2d4e9f932003b24a5..78d35ba54170881c648bc0dd03930769736d6a4c 100644 (file)
@@ -173,7 +173,7 @@ static picture_t *GetNewPicture( decoder_t *p_dec )
     p_pic = p_dec->pf_vout_buffer_new( p_dec );
 
     if( p_pic == NULL ) return NULL;
-    p_pic->b_progressive = !p_sys->p_dirac->src_params.interlace;
+    p_pic->b_progressive = !p_sys->p_dirac->src_params.source_sampling;
     p_pic->b_top_field_first = p_sys->p_dirac->src_params.topfieldfirst;
 
     p_pic->i_nb_fields = 2;
@@ -368,7 +368,7 @@ static int OpenEncoder( vlc_object_t *p_this )
         p_enc->fmt_in.video.i_frame_rate;
     p_sys->ctx.src_params.frame_rate.denominator =
         p_enc->fmt_in.video.i_frame_rate_base;
-    p_sys->ctx.src_params.interlace = 0;
+    p_sys->ctx.src_params.source_sampling = 0;
     p_sys->ctx.src_params.topfieldfirst = 0;
 
     var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );