You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	examples/filtering_*: constify AVFrame * for print_frame() and display_frame() functions
This commit is contained in:
		| @@ -150,7 +150,7 @@ static int init_filters(const char *filters_descr) | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
| static void print_frame(AVFrame *frame) | ||||
| static void print_frame(const AVFrame *frame) | ||||
| { | ||||
|     const int n = frame->nb_samples * av_get_channel_layout_nb_channels(av_frame_get_channel_layout(frame)); | ||||
|     const uint16_t *p     = (uint16_t*)frame->data[0]; | ||||
|   | ||||
| @@ -138,7 +138,7 @@ static int init_filters(const char *filters_descr) | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
| static void display_frame(AVFrame *frame, AVRational time_base) | ||||
| static void display_frame(const AVFrame *frame, AVRational time_base) | ||||
| { | ||||
|     int x, y; | ||||
|     uint8_t *p0, *p; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user