Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Swain <robert.swain@gmail.com>2009-04-19 04:55:46 +0400
committerRobert Swain <robert.swain@gmail.com>2009-04-19 04:55:46 +0400
commit5967e1413e174ef362904f9ca71571fc4926f6d1 (patch)
treecdb15521ad39351cae5df56570075ae9f100c1a1 /libavcodec/aac.c
parentd1bf60771c411668c5b8c80a73538a312151fd24 (diff)
Remove unnecessary assignment, found by CSA.
Originally committed as revision 18617 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r--libavcodec/aac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c
index b950ec9b56..0d2d0efe65 100644
--- a/libavcodec/aac.c
+++ b/libavcodec/aac.c
@@ -1616,7 +1616,7 @@ static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data
init_get_bits(&gb, buf, buf_size*8);
if (show_bits(&gb, 12) == 0xfff) {
- if ((err = parse_adts_frame_header(ac, &gb)) < 0) {
+ if (parse_adts_frame_header(ac, &gb) < 0) {
av_log(avccontext, AV_LOG_ERROR, "Error decoding AAC frame header.\n");
return -1;
}