You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avcodec/nvdec: Use av_buffer_replace() where appropriate
Reviewed-by: Timo Rothenpieler <timo@rothenpieler.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
		| @@ -524,12 +524,9 @@ static int nvdec_retrieve_data(void *logctx, AVFrame *frame) | ||||
|         goto copy_fail; | ||||
|     } | ||||
|  | ||||
|     av_buffer_unref(&frame->hw_frames_ctx); | ||||
|     frame->hw_frames_ctx = av_buffer_ref(decoder->real_hw_frames_ref); | ||||
|     if (!frame->hw_frames_ctx) { | ||||
|         ret = AVERROR(ENOMEM); | ||||
|     ret = av_buffer_replace(&frame->hw_frames_ctx, decoder->real_hw_frames_ref); | ||||
|     if (ret < 0) | ||||
|         goto copy_fail; | ||||
|     } | ||||
|  | ||||
|     unmap_data->idx = cf->idx; | ||||
|     if (!(unmap_data->idx_ref     = av_buffer_ref(cf->idx_ref)) || | ||||
|   | ||||
		Reference in New Issue
	
	Block a user