Ticket #6244: util-vdpau.cpp.diff

File util-vdpau.cpp.diff, 609 bytes (added by anonymous, 15 years ago)
  • util-vdpau.cpp

    old new  
    15181518
    15191519    VdpBool temporal = interlaced;
    15201520    VdpBool spatial  = interlaced && deinterlacer.contains("advanced");
    1521     const VdpBool * feature_values[] = {
    1522         &temporal,
    1523         &spatial,
     1521    const VdpBool feature_values[] = {
     1522        temporal,
     1523        spatial,
    15241524    };
    15251525
    15261526    vdp_st = vdp_video_mixer_set_feature_enables(
    15271527        videoMixer,
    15281528        ARSIZE(features),
    15291529        features,
    1530         *feature_values
     1530        feature_values
    15311531    );
    15321532    CHECK_ST
    15331533