Hi Jhollman,
What I really meant was
<?php
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
video_destacado();
endwhile;
// Reset Query
wp_reset_query();
or
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo get_video_destacado();
endwhile;
// Reset Query
wp_reset_query();
?>