Commit 3d1cc93d authored by Laurent Aimar's avatar Laurent Aimar

Added 88.2/176.4/192 kHz samplerates support in flac demuxer (close #3144).

parent ab5ae32c
......@@ -947,9 +947,15 @@ static int SyncInfo( decoder_t *p_dec, uint8_t *p_buf,
break;
case 1:
*pi_sample_rate = 88200;
break;
case 2:
*pi_sample_rate = 176400;
break;
case 3:
return 0;
*pi_sample_rate = 19200;
break;
case 4:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment