mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
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>
This commit is contained in:
parent
eb7ddb5066
commit
1bd2646a6d
@ -40,8 +40,8 @@ void ff_rtp_send_jpeg(AVFormatContext *s1, const uint8_t *buf, int size)
|
|||||||
s->timestamp = s->cur_timestamp;
|
s->timestamp = s->cur_timestamp;
|
||||||
|
|
||||||
/* convert video pixel dimensions from pixels to blocks */
|
/* convert video pixel dimensions from pixels to blocks */
|
||||||
w = s1->streams[0]->codec->width >> 3;
|
w = (s1->streams[0]->codec->width + 7) >> 3;
|
||||||
h = s1->streams[0]->codec->height >> 3;
|
h = (s1->streams[0]->codec->height + 7) >> 3;
|
||||||
|
|
||||||
/* get the pixel format type or fail */
|
/* get the pixel format type or fail */
|
||||||
if (s1->streams[0]->codec->pix_fmt == AV_PIX_FMT_YUVJ422P ||
|
if (s1->streams[0]->codec->pix_fmt == AV_PIX_FMT_YUVJ422P ||
|
||||||
|
Loading…
Reference in New Issue
Block a user