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:
Diffstat (limited to 'libavcodec/magicyuv.c')
-rw-r--r--libavcodec/magicyuv.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/libavcodec/magicyuv.c b/libavcodec/magicyuv.c
index 310ead4b06..2c312bec17 100644
--- a/libavcodec/magicyuv.c
+++ b/libavcodec/magicyuv.c
@@ -2,27 +2,28 @@
* MagicYUV decoder
* Copyright (c) 2016 Paul B Mahol
*
- * 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
*/
#include <stdlib.h>
#include <string.h>
-#include "../libavutil/pixdesc.h"
+#include "libavutil/pixdesc.h"
+#include "libavutil/qsort.h"
#include "avcodec.h"
#include "bytestream.h"
@@ -84,7 +85,7 @@ static int huff_build(VLC *vlc, uint8_t *len)
he[i].sym = 255 - i;
he[i].len = len[i];
}
- qsort(he, 256, sizeof(HuffEntry), huff_cmp_len);
+ AV_QSORT(he, 256, HuffEntry, huff_cmp_len);
code = 1;
for (i = 255; i >= 0; i--) {
@@ -113,8 +114,8 @@ static int magy_decode_slice(AVCodecContext *avctx, void *tdata,
for (i = 0; i < s->planes; i++) {
int left, lefttop, top;
- int height = AV_CEIL_RSHIFT(FFMIN(s->slice_height, avctx->height - j * s->slice_height), s->vshift[i]);
- int width = AV_CEIL_RSHIFT(avctx->width, s->hshift[i]);
+ int height = AV_CEIL_RSHIFT(FFMIN(s->slice_height, avctx->coded_height - j * s->slice_height), s->vshift[i]);
+ int width = AV_CEIL_RSHIFT(avctx->coded_width, s->hshift[i]);
int sheight = AV_CEIL_RSHIFT(s->slice_height, s->vshift[i]);
ptrdiff_t fake_stride = p->linesize[i] * (1 + interlaced);
ptrdiff_t stride = p->linesize[i];
@@ -213,8 +214,8 @@ static int magy_decode_slice(AVCodecContext *avctx, void *tdata,
}
if (s->decorrelate) {
- int height = FFMIN(s->slice_height, avctx->height - j * s->slice_height);
- int width = avctx->width;
+ int height = FFMIN(s->slice_height, avctx->coded_height - j * s->slice_height);
+ int width = avctx->coded_width;
uint8_t *b = p->data[0] + j * s->slice_height * p->linesize[0];
uint8_t *g = p->data[1] + j * s->slice_height * p->linesize[1];
uint8_t *r = p->data[2] + j * s->slice_height * p->linesize[2];
@@ -314,12 +315,12 @@ static int magy_decode_frame(AVCodecContext *avctx, void *data,
return ret;
slice_width = bytestream2_get_le32(&gbyte);
- if (slice_width != width) {
+ if (slice_width != avctx->coded_width) {
avpriv_request_sample(avctx, "Slice width %"PRIu32, slice_width);
return AVERROR_PATCHWELCOME;
}
s->slice_height = bytestream2_get_le32(&gbyte);
- if (s->slice_height <= 0 || s->slice_height > INT_MAX - height) {
+ if (s->slice_height <= 0 || s->slice_height > INT_MAX - avctx->coded_height) {
av_log(avctx, AV_LOG_ERROR,
"invalid slice height: %d\n", s->slice_height);
return AVERROR_INVALIDDATA;
@@ -327,7 +328,7 @@ static int magy_decode_frame(AVCodecContext *avctx, void *data,
bytestream2_skip(&gbyte, 4);
- s->nb_slices = (height + s->slice_height - 1) / s->slice_height;
+ s->nb_slices = (avctx->coded_height + s->slice_height - 1) / s->slice_height;
if (s->nb_slices > INT_MAX / sizeof(Slice)) {
av_log(avctx, AV_LOG_ERROR,
"invalid number of slices: %d\n", s->nb_slices);