Module: libav
Branch: master
Commit: a252649059b7dd1fa05e27bd6a14b5a08436456a

Author:    Martin Storsjö <mar...@martin.st>
Committer: Martin Storsjö <mar...@martin.st>
Date:      Tue Sep 11 14:43:10 2012 +0300

rtpdec_jpeg: Simplify the calculation of the number of qtables

Signed-off-by: Martin Storsjö <mar...@martin.st>

---

 libavformat/rtpdec_jpeg.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c
index b1361cd..463bf43 100644
--- a/libavformat/rtpdec_jpeg.c
+++ b/libavformat/rtpdec_jpeg.c
@@ -303,7 +303,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, 
PayloadContext *jpeg,
          * interchange format. */
         jpeg->hdr_size = jpeg_create_header(hdr, sizeof(hdr), type, width,
                                             height, qtables,
-                                            qtable_len > 64 ? 2 : 1);
+                                            qtable_len / 64);
 
         /* Copy JPEG header to frame buffer. */
         avio_write(jpeg->frame, hdr, jpeg->hdr_size);

_______________________________________________
libav-commits mailing list
libav-commits@libav.org
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to