summaryrefslogtreecommitdiff
path: root/libavformat/au.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/au.c')
-rw-r--r--libavformat/au.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/au.c b/libavformat/au.c
index 055c59a22b..fbf4e98383 100644
--- a/libavformat/au.c
+++ b/libavformat/au.c
@@ -1,4 +1,4 @@
-/*
+/*
* AU encoder and decoder
* Copyright (c) 2001 Fabrice Bellard.
*
@@ -127,11 +127,11 @@ static int au_read_header(AVFormatContext *s,
return -1;
size = get_be32(pb); /* header size */
get_be32(pb); /* data size */
-
+
id = get_be32(pb);
rate = get_be32(pb);
channels = get_be32(pb);
-
+
codec = codec_get_id(codec_au_tags, id);
if (size >= 24) {