Commit ae6429e6 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '1f168661' into release/2.2

* commit '1f168661':
  rtpenc_jpeg: Handle case of picture dimensions not dividing by 8
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents a1323ec1 1f168661
......@@ -40,8 +40,8 @@ void ff_rtp_send_jpeg(AVFormatContext *s1, const uint8_t *buf, int size)
s->timestamp = s->cur_timestamp;
/* convert video pixel dimensions from pixels to blocks */
w = s1->streams[0]->codec->width >> 3;
h = s1->streams[0]->codec->height >> 3;
w = (s1->streams[0]->codec->width + 7) >> 3;
h = (s1->streams[0]->codec->height + 7) >> 3;
/* check if pixel format is not the normal 420 case */
if (s1->streams[0]->codec->pix_fmt == AV_PIX_FMT_YUVJ422P) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment