avcodec/msrleenc: Replace stray \r by \n

Reviewed-by: Tomas Härdin <git@haerdin.se>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
pull/389/head
Andreas Rheinhardt 1 year ago
parent 463a472426
commit a054ceb4e2
  1. 3
      libavcodec/msrleenc.c

@ -234,7 +234,8 @@ static int encode(AVCodecContext *avctx, AVPacket *pkt,
}
bytestream_put_be16(&data, 0x0001); // end of bitmap
pkt->size = data - pkt->data;
return 0; }
return 0;
}
static int msrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *pict, int *got_packet)

Loading…
Cancel
Save