diff options
author | Andrey Utkin <andrey.krieger.utkin@gmail.com> | 2015-04-11 00:54:10 +0300 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2015-05-31 11:11:13 -0400 |
commit | 1f1686615c20982a68b2d8db3ff109834a260d27 (patch) | |
tree | 18299c387e6f88dd3dc5c47c4e1dae3401f9d703 | |
parent | 8b9d0f5d3aceb67d472d190db53a21177fea9275 (diff) | |
download | ffmpeg-1f1686615c20982a68b2d8db3ff109834a260d27.tar.gz |
rtpenc_jpeg: Handle case of picture dimensions not dividing by 8
This fixes the calculation of the number of needed blocks to make
sure that ALL pixels are represented by the result.
Signed-off-by: Martin Storsjö <martin@martin.st>
(cherry picked from commit 4415d0f3bbaeb287327ef101ae98d727a69d9af1)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-rw-r--r-- | libavformat/rtpenc_jpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpenc_jpeg.c b/libavformat/rtpenc_jpeg.c index 04df6583df..0ceb091836 100644 --- a/libavformat/rtpenc_jpeg.c +++ b/libavformat/rtpenc_jpeg.c @@ -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) { |