Browse Source

rtpdec_jpeg: Don't use a bitstream writer for the EOI marker

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.0
Martin Storsjö 12 years ago
parent
commit
c64d2a63df
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      libavformat/rtpdec_jpeg.c

+ 1
- 5
libavformat/rtpdec_jpeg.c View File

@@ -334,13 +334,9 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,


if (flags & RTP_FLAG_MARKER) { if (flags & RTP_FLAG_MARKER) {
/* End of JPEG data packet. */ /* End of JPEG data packet. */
PutBitContext pbc;
uint8_t buf[2];
uint8_t buf[2] = { 0xff, EOI };


/* Put EOI marker. */ /* 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)); avio_write(jpeg->frame, buf, sizeof(buf));


/* Prepare the JPEG packet. */ /* Prepare the JPEG packet. */


Loading…
Cancel
Save