diff options
Diffstat (limited to 'libavcodec/bgmc.c')
-rw-r--r-- | libavcodec/bgmc.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/bgmc.c b/libavcodec/bgmc.c index c7f732e7bb..1a6817b73f 100644 --- a/libavcodec/bgmc.c +++ b/libavcodec/bgmc.c @@ -1,28 +1,28 @@ /* * Block Gilbert-Moore decoder - * Copyright (c) 2010 Thilo Borgmann <thilo.borgmann _at_ googlemail.com> + * Copyright (c) 2010 Thilo Borgmann <thilo.borgmann _at_ mail.de> * - * This file is part of Libav. + * This file is part of FFmpeg. * - * Libav is free software; you can redistribute it and/or + * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * - * Libav is distributed in the hope that it will be useful, + * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with Libav; if not, write to the Free Software + * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** * @file * Block Gilbert-Moore decoder as used by MPEG-4 ALS - * @author Thilo Borgmann <thilo.borgmann _at_ googlemail.com> + * @author Thilo Borgmann <thilo.borgmann _at_ mail.de> */ #include "libavutil/attributes.h" @@ -460,8 +460,8 @@ static uint8_t *bgmc_lut_getp(uint8_t *lut, int *lut_status, int delta) av_cold int ff_bgmc_init(AVCodecContext *avctx, uint8_t **cf_lut, int **cf_lut_status) { - *cf_lut = av_malloc(sizeof(*cf_lut) * LUT_BUFF * 16 * LUT_SIZE); - *cf_lut_status = av_malloc(sizeof(*cf_lut_status) * LUT_BUFF); + *cf_lut = av_malloc(sizeof(**cf_lut) * LUT_BUFF * 16 * LUT_SIZE); + *cf_lut_status = av_malloc(sizeof(**cf_lut_status) * LUT_BUFF); if (!*cf_lut || !*cf_lut_status) { ff_bgmc_end(cf_lut, cf_lut_status); @@ -469,7 +469,7 @@ av_cold int ff_bgmc_init(AVCodecContext *avctx, return AVERROR(ENOMEM); } else { // initialize lut_status buffer to a value never used to compare against - memset(*cf_lut_status, -1, sizeof(*cf_lut_status) * LUT_BUFF); + memset(*cf_lut_status, -1, sizeof(**cf_lut_status) * LUT_BUFF); } return 0; |