diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-02-12 13:22:41 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2009-02-12 13:22:41 +0000 |
commit | ff587009ae60f6cf76d70879986125696490f99c (patch) | |
tree | b3f32942595c761a6477073135a9477fb8619841 /libavcodec/aac.c | |
parent | 6a460c36b65d783e7f1e15001c21a63c2890021e (diff) | |
download | ffmpeg-ff587009ae60f6cf76d70879986125696490f99c.tar.gz |
Remove bogus coupling_point assignment for non-CCE as this value is not checked
in this case
Patch by Alex Converse ( alex converse gmail com )
Originally committed as revision 17179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index 7275430a8d..4273e796be 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -1577,8 +1577,6 @@ static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data if(elem_type < TYPE_DSE) { if(!ac->che[elem_type][elem_id]) return -1; - if(elem_type != TYPE_CCE) - ac->che[elem_type][elem_id]->coup.coupling_point = 4; } switch (elem_type) { |