You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	fix a memory leak on seeking.
Originally committed as revision 5062 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -3909,8 +3909,13 @@ static void idr(H264Context *h){ | |||||||
| static void flush_dpb(AVCodecContext *avctx){ | static void flush_dpb(AVCodecContext *avctx){ | ||||||
|     H264Context *h= avctx->priv_data; |     H264Context *h= avctx->priv_data; | ||||||
|     int i; |     int i; | ||||||
|     for(i=0; i<16; i++) |     for(i=0; i<16; i++) { | ||||||
|  |         if(h->delayed_pic[i]) | ||||||
|  |             h->delayed_pic[i]->reference= 0; | ||||||
|         h->delayed_pic[i]= NULL; |         h->delayed_pic[i]= NULL; | ||||||
|  |     } | ||||||
|  |     if(h->delayed_output_pic) | ||||||
|  |         h->delayed_output_pic->reference= 0; | ||||||
|     h->delayed_output_pic= NULL; |     h->delayed_output_pic= NULL; | ||||||
|     idr(h); |     idr(h); | ||||||
|     if(h->s.current_picture_ptr) |     if(h->s.current_picture_ptr) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user