mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
pngenc: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7925f923a5
commit
65efc66d8e
@ -24,6 +24,8 @@
|
|||||||
#include "dsputil.h"
|
#include "dsputil.h"
|
||||||
#include "png.h"
|
#include "png.h"
|
||||||
|
|
||||||
|
#include "libavutil/avassert.h"
|
||||||
|
|
||||||
/* TODO:
|
/* TODO:
|
||||||
* - add 2, 4 and 16 bit depth support
|
* - add 2, 4 and 16 bit depth support
|
||||||
*/
|
*/
|
||||||
@ -147,7 +149,7 @@ static uint8_t *png_choose_filter(PNGEncContext *s, uint8_t *dst,
|
|||||||
uint8_t *src, uint8_t *top, int size, int bpp)
|
uint8_t *src, uint8_t *top, int size, int bpp)
|
||||||
{
|
{
|
||||||
int pred = s->filter_type;
|
int pred = s->filter_type;
|
||||||
assert(bpp || !pred);
|
av_assert0(bpp || !pred);
|
||||||
if(!top && pred)
|
if(!top && pred)
|
||||||
pred = PNG_FILTER_VALUE_SUB;
|
pred = PNG_FILTER_VALUE_SUB;
|
||||||
if(pred == PNG_FILTER_VALUE_MIXED) {
|
if(pred == PNG_FILTER_VALUE_MIXED) {
|
||||||
|
Loading…
Reference in New Issue
Block a user