Changeset ba7e4ce0f12026c1736097f43cfbd96096b98f23

Show
Ignore:
Timestamp:
03/15/08 22:47:10 (6 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1205617630 +0100
git-parent:

[eb73dbd387402d035c2eb77d9c0a65a5e21c4d95]

git-author:
Rafaël Carré <funman@videolan.org> 1205617630 +0100
Message:

Add assert()ions to help fighting a bug

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/video_output/vout_pictures.c

    r99fab90 rba7e4ce  
    937937            /* We need to proceed line by line */ 
    938938            uint8_t *p_in = p_src->p[i].p_pixels; 
     939            assert( p_in ); 
    939940            uint8_t *p_out = p_dest->p[i].p_pixels; 
     941            assert( p_out ); 
    940942            int i_line; 
    941943