You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avformat/mux: Don't use av_ prefix for static functions
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
		
				
					committed by
					
						 James Almer
						James Almer
					
				
			
			
				
	
			
			
			
						parent
						
							32ea6ffb16
						
					
				
				
					commit
					8867efa85f
				
			| @@ -1336,8 +1336,8 @@ int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt, | ||||
|     return ret; | ||||
| } | ||||
|  | ||||
| static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index, | ||||
|                                            AVFrame *frame, int interleaved) | ||||
| static int write_uncoded_frame_internal(AVFormatContext *s, int stream_index, | ||||
|                                         AVFrame *frame, int interleaved) | ||||
| { | ||||
|     AVPacket pkt, *pktp; | ||||
|  | ||||
| @@ -1366,13 +1366,13 @@ static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index, | ||||
| int av_write_uncoded_frame(AVFormatContext *s, int stream_index, | ||||
|                            AVFrame *frame) | ||||
| { | ||||
|     return av_write_uncoded_frame_internal(s, stream_index, frame, 0); | ||||
|     return write_uncoded_frame_internal(s, stream_index, frame, 0); | ||||
| } | ||||
|  | ||||
| int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index, | ||||
|                                        AVFrame *frame) | ||||
| { | ||||
|     return av_write_uncoded_frame_internal(s, stream_index, frame, 1); | ||||
|     return write_uncoded_frame_internal(s, stream_index, frame, 1); | ||||
| } | ||||
|  | ||||
| int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user