This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Change av_free to av_freep
Originally committed as revision 19360 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger
16 years ago
parent
16c8318513
commit
4f76697b3e
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
libavcodec/indeo3.c
+ 3
- 3
libavcodec/indeo3.c
View File
@@ -143,9 +143,9 @@ static av_cold int iv_alloc_frames(Indeo3DecodeContext *s)
static av_cold void iv_free_func(Indeo3DecodeContext *s)
{
av_free(s->buf);
av_free(s->ModPred);
av_free(s->corrector_type);
av_free
p
(
&
s->buf);
av_free
p
(
&
s->ModPred);
av_free
p
(
&
s->corrector_type);
}
struct ustr {
Write
Preview
Loading…
Cancel
Save