You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avframe: mark source frame const in _ref and _clone
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
		
				
					committed by
					
						 Anton Khirnov
						Anton Khirnov
					
				
			
			
				
	
			
			
			
						parent
						
							fc06ee6ee3
						
					
				
				
					commit
					529a9893d7
				
			| @@ -171,7 +171,7 @@ int av_frame_get_buffer(AVFrame *frame, int align) | ||||
|     return AVERROR(EINVAL); | ||||
| } | ||||
|  | ||||
| int av_frame_ref(AVFrame *dst, AVFrame *src) | ||||
| int av_frame_ref(AVFrame *dst, const AVFrame *src) | ||||
| { | ||||
|     int i, ret = 0; | ||||
|  | ||||
| @@ -257,7 +257,7 @@ fail: | ||||
|     return ret; | ||||
| } | ||||
|  | ||||
| AVFrame *av_frame_clone(AVFrame *src) | ||||
| AVFrame *av_frame_clone(const AVFrame *src) | ||||
| { | ||||
|     AVFrame *ret = av_frame_alloc(); | ||||
|  | ||||
|   | ||||
| @@ -384,7 +384,7 @@ void av_frame_free(AVFrame **frame); | ||||
|  * | ||||
|  * @return 0 on success, a negative AVERROR on error | ||||
|  */ | ||||
| int av_frame_ref(AVFrame *dst, AVFrame *src); | ||||
| int av_frame_ref(AVFrame *dst, const AVFrame *src); | ||||
|  | ||||
| /** | ||||
|  * Create a new frame that references the same data as src. | ||||
| @@ -393,7 +393,7 @@ int av_frame_ref(AVFrame *dst, AVFrame *src); | ||||
|  * | ||||
|  * @return newly created AVFrame on success, NULL on error. | ||||
|  */ | ||||
| AVFrame *av_frame_clone(AVFrame *src); | ||||
| AVFrame *av_frame_clone(const AVFrame *src); | ||||
|  | ||||
| /** | ||||
|  * Unreference all the buffers referenced by frame and reset the frame fields. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user