[FFmpeg-cvslog] avcodec/msrleenc: Replace stray \r by \n
Andreas Rheinhardt
git at videolan.org
Mon Jul 17 17:31:28 EEST 2023
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sun Jul 16 16:29:07 2023 +0200| [a054ceb4e274b2e2edbf095ed9766d370f782e4d] | committer: Andreas Rheinhardt
avcodec/msrleenc: Replace stray \r by \n
Reviewed-by: Tomas Härdin <git at haerdin.se>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a054ceb4e274b2e2edbf095ed9766d370f782e4d
---
libavcodec/msrleenc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/msrleenc.c b/libavcodec/msrleenc.c
index b73aa5e384..e48d11a0f7 100644
--- a/libavcodec/msrleenc.c
+++ b/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)
More information about the ffmpeg-cvslog
mailing list