Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 722204 | Differences between
and this patch

Collapse All | Expand All

(-)mp3_check-1.98~/mp3_check_misc.c (-1 / +1 lines)
Lines 11-17 Link Here
11
#include "support_functions.h"
11
#include "support_functions.h"
12
12
13
//  Function prototypes go here. 
13
//  Function prototypes go here. 
14
inline int		move_to_next_frame(char *possible_mp3_tag, frame_info *mp3_i, gen_info *file_info, command_flags *flags, FILE *);
14
extern inline int	move_to_next_frame(char *possible_mp3_tag, frame_info *mp3_i, gen_info *file_info, command_flags *flags, FILE *);
15
int			get_char_from_file(FILE *, unsigned int *header_value, gen_info *file_info, command_flags *flags, char *possible_mp3_tag);
15
int			get_char_from_file(FILE *, unsigned int *header_value, gen_info *file_info, command_flags *flags, char *possible_mp3_tag);
16
int			scan_file(FILE *, char *filename, meta_options *flag_options, command_flags *flags);
16
int			scan_file(FILE *, char *filename, meta_options *flag_options, command_flags *flags);
17
int			parse_args(char **argv, meta_options *flag_options, command_flags *flags);
17
int			parse_args(char **argv, meta_options *flag_options, command_flags *flags);
(-)mp3_check-1.98~/support_functions.h (-1 / +1 lines)
Lines 680-686 print_frame_info(mp3_i, file_info) Link Here
680
	printf("%-20s%d\n", "BitRate", mp3_i->BIT_RATE);
680
	printf("%-20s%d\n", "BitRate", mp3_i->BIT_RATE);
681
	printf("%-20s%d\n", "SampRate", mp3_i->SAMPLE_FREQ);
681
	printf("%-20s%d\n", "SampRate", mp3_i->SAMPLE_FREQ);
682
	printf("%-20s%s\n", "BinString", mp3_i->BIN_STRING);
682
	printf("%-20s%s\n", "BinString", mp3_i->BIN_STRING);
683
	printf("%-20s%d\n", "BinLen", strlen(mp3_i->BIN_STRING));
683
	printf("%-20s%zu\n", "BinLen", strlen(mp3_i->BIN_STRING));
684
	printf("%-20s%u\n", "IntHeader", mp3_i->INT_HEADER);
684
	printf("%-20s%u\n", "IntHeader", mp3_i->INT_HEADER);
685
	printf("%-20s0x%x\n", "CRC16Value", mp3_i->CRC16_VALUE);
685
	printf("%-20s0x%x\n", "CRC16Value", mp3_i->CRC16_VALUE);
686
	printf("%-20s0x%x\n", "Correct_CRC16Value", mp3_i->CORRECT_CRC16_VALUE);
686
	printf("%-20s0x%x\n", "Correct_CRC16Value", mp3_i->CORRECT_CRC16_VALUE);

Return to bug 722204