comparison indeo3.c @ 9928:16330a3b573b libavcodec

Change av_free to av_freep
author reimar
date Mon, 06 Jul 2009 16:49:36 +0000
parents f954ea120c78
children 5da84f0d0a55
comparison
equal deleted inserted replaced
9927:f954ea120c78 9928:16330a3b573b
141 return 0; 141 return 0;
142 } 142 }
143 143
144 static av_cold void iv_free_func(Indeo3DecodeContext *s) 144 static av_cold void iv_free_func(Indeo3DecodeContext *s)
145 { 145 {
146 av_free(s->buf); 146 av_freep(&s->buf);
147 av_free(s->ModPred); 147 av_freep(&s->ModPred);
148 av_free(s->corrector_type); 148 av_freep(&s->corrector_type);
149 } 149 }
150 150
151 struct ustr { 151 struct ustr {
152 long xpos; 152 long xpos;
153 long ypos; 153 long ypos;