You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Merge commit '5430839144c6da0160e8e0cfb0c8db01de432e94'
* commit '5430839144c6da0160e8e0cfb0c8db01de432e94':
  eacmv: clear references on frame dimensions change
Conflicts:
	libavcodec/eacmv.c
See: e9d443cf08
Merged-by: Michael Niedermayer <michaelni@gmx.at>
			
			
This commit is contained in:
		| @@ -141,14 +141,17 @@ static int cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t * | ||||
|  | ||||
|     s->width  = AV_RL16(&buf[4]); | ||||
|     s->height = AV_RL16(&buf[6]); | ||||
|     if (s->avctx->width!=s->width || s->avctx->height!=s->height) { | ||||
|  | ||||
|     if (s->width  != s->avctx->width || | ||||
|         s->height != s->avctx->height) { | ||||
|         av_frame_unref(s->last_frame); | ||||
|         av_frame_unref(s->last2_frame); | ||||
|         ret = ff_set_dimensions(s->avctx, s->width, s->height); | ||||
|         if (ret < 0) | ||||
|             return ret; | ||||
|     } | ||||
|  | ||||
|     ret = ff_set_dimensions(s->avctx, s->width, s->height); | ||||
|     if (ret < 0) | ||||
|         return ret; | ||||
|  | ||||
|     fps = AV_RL16(&buf[10]); | ||||
|     if (fps > 0) | ||||
|         s->avctx->time_base = (AVRational){ 1, fps }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user