lavc/mediacodec: fix zero stride for OMX.allwinner.video.decoder.avc

pull/191/head
Kirill Gavrilov 9 years ago committed by Matthieu Bouron
parent c2bbcf1607
commit f3ec8ac0f4
  1. 2
      libavcodec/mediacodecdec.c

@ -247,7 +247,7 @@ static int mediacodec_dec_parse_format(AVCodecContext *avctx, MediaCodecDecConte
av_freep(&format);
return AVERROR_EXTERNAL;
}
s->stride = value >= 0 ? value : s->width;
s->stride = value > 0 ? value : s->width;
if (!ff_AMediaFormat_getInt32(s->format, "slice-height", &value)) {
format = ff_AMediaFormat_toString(s->format);

Loading…
Cancel
Save