0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

freeing video buffer

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1658 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-08-23 12:47:23 +00:00
parent 0cca48c910
commit e25be3b9fa

View File

@ -98,8 +98,8 @@ sh_video_t* new_sh_video(demuxer_t *demuxer,int id){
}
void free_sh_video(sh_video_t* sh){
// if(sh->our_out_buffer) free(sh->our_out_buffer);
// if(sh->bih) free(sh->bih);
if(sh->our_out_buffer) free(sh->our_out_buffer);
if(sh->bih) free(sh->bih);
free(sh);
}