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
flashsv2enc: remove useless if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
Michael Niedermayer
14 years ago
parent
3f6dc4a130
commit
f6a5edb64c
1 changed files
with
0 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-7
libavcodec/flashsv2enc.c
+ 0
- 7
libavcodec/flashsv2enc.c
View File
@@ -123,20 +123,13 @@ typedef struct FlashSV2Context {
static av_cold void cleanup(FlashSV2Context * s)
{
if (s->encbuffer)
av_free(s->encbuffer);
if (s->keybuffer)
av_free(s->keybuffer);
if (s->databuffer)
av_free(s->databuffer);
if (s->current_frame)
av_free(s->current_frame);
if (s->key_frame)
av_free(s->key_frame);
if (s->frame_blocks)
av_free(s->frame_blocks);
if (s->key_blocks)
av_free(s->key_blocks);
}
Write
Preview
Loading…
Cancel
Save