[FFmpeg-cvslog] rtpdec_jpeg: Don't use a bitstream writer for the EOI marker
Martin Storsjö
git at videolan.org
Thu Sep 13 15:29:00 CEST 2012
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Tue Sep 11 12:46:44 2012 +0300| [c64d2a63df5d7cd309c184bd0bd33dd2cb1259b1] | committer: Martin Storsjö
rtpdec_jpeg: Don't use a bitstream writer for the EOI marker
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c64d2a63df5d7cd309c184bd0bd33dd2cb1259b1
---
libavformat/rtpdec_jpeg.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c
index 4f52c31b..4d8523d 100644
--- a/libavformat/rtpdec_jpeg.c
+++ b/libavformat/rtpdec_jpeg.c
@@ -334,13 +334,9 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
if (flags & RTP_FLAG_MARKER) {
/* End of JPEG data packet. */
- PutBitContext pbc;
- uint8_t buf[2];
+ uint8_t buf[2] = { 0xff, EOI };
/* Put EOI marker. */
- init_put_bits(&pbc, buf, sizeof(buf));
- put_marker(&pbc, EOI);
- flush_put_bits(&pbc);
avio_write(jpeg->frame, buf, sizeof(buf));
/* Prepare the JPEG packet. */
More information about the ffmpeg-cvslog
mailing list