diff options
author | Robert Swain <robert.swain@gmail.com> | 2008-08-29 20:19:23 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-08-29 20:19:23 +0000 |
commit | 93b63b1a6747651035210d4cf8bf3006c4a156f4 (patch) | |
tree | cf3af9878c51047a4861ccee1042144a3622a4b5 | |
parent | f4fae46e6714fa07f899d9de3f1986181c0b101b (diff) | |
download | ffmpeg-93b63b1a6747651035210d4cf8bf3006c4a156f4.tar.gz |
Fix typo in element type
Originally committed as revision 15037 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index 016294bd80..a75a7cefdd 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -1366,7 +1366,7 @@ static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data break; case TYPE_CCE: - err = decode_cce(ac, &gb, ac->che[TYPE_SCE][elem_id]); + err = decode_cce(ac, &gb, ac->che[TYPE_CCE][elem_id]); break; case TYPE_LFE: |