-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-CS50-CÓDIGO - VOLUME
51 lines (43 loc) · 1.11 KB
/
04-CS50-CÓDIGO - VOLUME
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
// Bytes
const int HEADER_SIZE = 44;
int main(int argc, char *argv[])
{
if (argc != 4)
{
printf("Usar input.wav e output.wav\n");
return 1;
}
// Abrir arquivo e determinar fator
FILE *input = fopen(argv[1], "r");
if (input == NULL)
{
printf("Não foi possível abrir arquivo.\n");
return 1;
}
FILE *output = fopen(argv[2], "w");
if (output == NULL)
{
printf("Não foi possível abrir arquivo.\n");
return 1;
}
float factor = atof(argv[3]);
// Copiar cabeçalho do arquivo de entrada para o arquivo de saída
uint8_t byte_buffer[HEADER_SIZE];
if (fread(byte_buffer, sizeof(uint8_t), HEADER_SIZE, input))
{
fwrite(byte_buffer, sizeof(uint8_t), HEADER_SIZE, output);
}
//Dados Atualizados
uint16_t two_byte_buffer;
while (fread(&two_byte_buffer, sizeof(uint16_t), 1, input))
{
two_byte_buffer *= (uint16_t)factor;
fwrite(&two_byte_buffer, sizeof(uint16_t), 1, output);
}
// Fechar Arquvios
fclose(input);
fclose(output);
}