summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJai Menon <jmenon86@gmail.com>2009-11-27 13:10:56 +0000
committerJai Menon <jmenon86@gmail.com>2009-11-27 13:10:56 +0000
commit6866dd12379d2a834f478c7d84a7fcb7615bbc91 (patch)
treec59de29cfa5922c27e5cde566b0f4bbb78159d28
parenta7c6e766387e8b3922bc710267c41163017bd316 (diff)
Fix typo.
Originally committed as revision 20628 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 7ba92ff8cc..345b9c47c2 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1054,7 +1054,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
st->codec->channels = get_be32(pb);
get_be32(pb); /* always 0x7F000000 */
st->codec->bits_per_coded_sample = get_be32(pb); /* bits per channel if sound is uncompressed */
- flags = get_be32(pb); /* lcpm format specific flag */
+ flags = get_be32(pb); /* lpcm format specific flag */
sc->bytes_per_frame = get_be32(pb); /* bytes per audio packet if constant */
sc->samples_per_frame = get_be32(pb); /* lpcm frames per audio packet if constant */
if (format == MKTAG('l','p','c','m'))