Browse Source

lavc/h263dec: Remove a variable declaration that can lead to a warning.

tags/n4.1
Carl Eugen Hoyos 7 years ago
parent
commit
5545a6df87
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/h263dec.c

+ 1
- 2
libavcodec/h263dec.c View File

@@ -47,10 +47,9 @@

static enum AVPixelFormat h263_get_format(AVCodecContext *avctx)
{
MpegEncContext *s = avctx->priv_data;
/* MPEG-4 Studio Profile only, not supported by hardware */
if (avctx->bits_per_raw_sample > 8) {
av_assert1(s->studio_profile);
av_assert1(((MpegEncContext *)avctx->priv_data)->studio_profile);
return avctx->pix_fmt;
}



Loading…
Cancel
Save