summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/aac.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/aac.c')
-rw-r--r--lib/rbcodec/metadata/aac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/metadata/aac.c b/lib/rbcodec/metadata/aac.c
index 82adeacbde..358b2de079 100644
--- a/lib/rbcodec/metadata/aac.c
+++ b/lib/rbcodec/metadata/aac.c
@@ -41,7 +41,7 @@ static const int sample_rates[] =
41 41
42static bool check_adts_syncword(int fd) 42static bool check_adts_syncword(int fd)
43{ 43{
44 uint16_t syncword; 44 uint16_t syncword = 0;
45 45
46 read_uint16be(fd, &syncword); 46 read_uint16be(fd, &syncword);
47 return (syncword & 0xFFF6) == 0xFFF0; 47 return (syncword & 0xFFF6) == 0xFFF0;