Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-20 20:19:53 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-06-20 20:19:53 +0400
commit4eae08b43806d704e5a1d7cf8c5e33cad95b1c3e (patch)
tree4716995976161e502f0a427bf2cc331f6ed27cc5 /libavcodec/mjpegdec.c
parentbc210bfca6f0d95bc395a666d976815d78aa3708 (diff)
mjpegdec: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mjpegdec.c')
-rw-r--r--libavcodec/mjpegdec.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c
index f24b27913a..9aa6113b1f 100644
--- a/libavcodec/mjpegdec.c
+++ b/libavcodec/mjpegdec.c
@@ -30,9 +30,6 @@
* MJPEG decoder.
*/
-// #define DEBUG
-#include <assert.h>
-
#include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "libavutil/opt.h"
@@ -52,7 +49,7 @@ static int build_vlc(VLC *vlc, const uint8_t *bits_table,
uint16_t huff_sym[256];
int i;
- assert(nb_codes <= 256);
+ av_assert0(nb_codes <= 256);
ff_mjpeg_build_huffman_codes(huff_size, huff_code, bits_table, val_table);
@@ -352,7 +349,7 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
s->avctx->color_range = s->cs_itu601 ? AVCOL_RANGE_MPEG : AVCOL_RANGE_JPEG;
}
}
- assert(s->nb_components == 3);
+ av_assert0(s->nb_components == 3);
break;
case 0x12121100:
case 0x22122100: