do not print error message when klv_read_packet fails
Originally committed as revision 9186 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		
							parent
							
								
									cabe2527ef
								
							
						
					
					
						commit
						b7889fce2f
					
				| @ -336,10 +336,8 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt) | |||||||
|     KLVPacket klv; |     KLVPacket klv; | ||||||
| 
 | 
 | ||||||
|     while (!url_feof(&s->pb)) { |     while (!url_feof(&s->pb)) { | ||||||
|         if (klv_read_packet(&klv, &s->pb) < 0) { |         if (klv_read_packet(&klv, &s->pb) < 0) | ||||||
|             av_log(s, AV_LOG_ERROR, "error reading KLV packet\n"); |  | ||||||
|             return -1; |             return -1; | ||||||
|         } |  | ||||||
| #ifdef DEBUG | #ifdef DEBUG | ||||||
|         PRINT_KEY(s, "read packet", klv.key); |         PRINT_KEY(s, "read packet", klv.key); | ||||||
| #endif | #endif | ||||||
| @ -944,10 +942,8 @@ static int mxf_read_header(AVFormatContext *s, AVFormatParameters *ap) | |||||||
|     while (!url_feof(&s->pb)) { |     while (!url_feof(&s->pb)) { | ||||||
|         const MXFMetadataReadTableEntry *metadata; |         const MXFMetadataReadTableEntry *metadata; | ||||||
| 
 | 
 | ||||||
|         if (klv_read_packet(&klv, &s->pb) < 0) { |         if (klv_read_packet(&klv, &s->pb) < 0) | ||||||
|             av_log(s, AV_LOG_ERROR, "error reading KLV packet\n"); |  | ||||||
|             return -1; |             return -1; | ||||||
|         } |  | ||||||
| #ifdef DEBUG | #ifdef DEBUG | ||||||
|         PRINT_KEY(s, "read header", klv.key); |         PRINT_KEY(s, "read header", klv.key); | ||||||
| #endif | #endif | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user