Browse Source

lavf/rtpenc_jpeg: Warn if number of present quantization tables is not two.

tags/n2.8
Carl Eugen Hoyos Michael Niedermayer 10 years ago
parent
commit
32d8726a31
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavformat/rtpenc_jpeg.c

+ 4
- 0
libavformat/rtpenc_jpeg.c View File

@@ -119,6 +119,10 @@ void ff_rtp_send_jpeg(AVFormatContext *s1, const uint8_t *buf, int size)
break;
}
}
if (nb_qtables && nb_qtables != 2)
av_log(s1, AV_LOG_WARNING,
"RFC 2435 suggests two quantization tables, %d provided\n",
nb_qtables);

/* skip JPEG header */
buf += i;


Loading…
Cancel
Save