Commit 44fe4cde authored by al3x's avatar al3x

unwanted second definition of CHECKED_ALLOCZ


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2009 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a58b7980
......@@ -2106,16 +2106,6 @@ static void init_pred_ptrs(H264Context *h){
h->pred16x16[DC_128_PRED8x8 ]= pred16x16_128_dc_c;
}
//FIXME factorize
#define CHECKED_ALLOCZ(p, size)\
{\
p= av_mallocz(size);\
if(p==NULL){\
perror("malloc");\
goto fail;\
}\
}
static void free_tables(H264Context *h){
av_freep(&h->intra4x4_pred_mode);
av_freep(&h->non_zero_count);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment