Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
437fb1c8
Commit
437fb1c8
authored
Feb 03, 2011
by
Clément Bœsch
Committed by
Mans Rullgard
Feb 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a few if (p) av_free(p) forms
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
dc75d6db
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
41 deletions
+20
-41
dvbsubdec.c
libavcodec/dvbsubdec.c
+2
-5
flashsv.c
libavcodec/flashsv.c
+2
-4
libxvidff.c
libavcodec/libxvidff.c
+3
-6
mpegaudiodec.c
libavcodec/mpegaudiodec.c
+1
-2
smacker.c
libavcodec/smacker.c
+3
-6
truemotion2.c
libavcodec/truemotion2.c
+4
-8
tta.c
libavcodec/tta.c
+1
-2
rtpdec_mpeg4.c
libavformat/rtpdec_mpeg4.c
+1
-2
smacker.c
libavformat/smacker.c
+3
-6
No files found.
libavcodec/dvbsubdec.c
View file @
437fb1c8
...
...
@@ -332,9 +332,7 @@ static void delete_state(DVBSubContext *ctx)
ctx
->
region_list
=
region
->
next
;
delete_region_display_list
(
ctx
,
region
);
if
(
region
->
pbuf
)
av_free
(
region
->
pbuf
);
av_free
(
region
->
pbuf
);
av_free
(
region
);
}
...
...
@@ -1032,8 +1030,7 @@ static void dvbsub_parse_region_segment(AVCodecContext *avctx,
buf
+=
2
;
if
(
region
->
width
*
region
->
height
!=
region
->
buf_size
)
{
if
(
region
->
pbuf
)
av_free
(
region
->
pbuf
);
av_free
(
region
->
pbuf
);
region
->
buf_size
=
region
->
width
*
region
->
height
;
...
...
libavcodec/flashsv.c
View file @
437fb1c8
...
...
@@ -133,8 +133,7 @@ static int flashsv_decode_frame(AVCodecContext *avctx,
/* the block size could change between frames, make sure the buffer
* is large enough, if not, get a larger one */
if
(
s
->
block_size
<
s
->
block_width
*
s
->
block_height
)
{
if
(
s
->
tmpblock
!=
NULL
)
av_free
(
s
->
tmpblock
);
av_free
(
s
->
tmpblock
);
if
((
s
->
tmpblock
=
av_malloc
(
3
*
s
->
block_width
*
s
->
block_height
))
==
NULL
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Can't allocate decompression buffer.
\n
"
);
return
-
1
;
...
...
@@ -243,8 +242,7 @@ static av_cold int flashsv_decode_end(AVCodecContext *avctx)
avctx
->
release_buffer
(
avctx
,
&
s
->
frame
);
/* free the tmpblock */
if
(
s
->
tmpblock
!=
NULL
)
av_free
(
s
->
tmpblock
);
av_free
(
s
->
tmpblock
);
return
0
;
}
...
...
libavcodec/libxvidff.c
View file @
437fb1c8
...
...
@@ -533,12 +533,9 @@ static av_cold int xvid_encode_close(AVCodecContext *avctx) {
av_free
(
x
->
twopassbuffer
);
av_free
(
x
->
old_twopassbuffer
);
}
if
(
x
->
twopassfile
!=
NULL
)
av_free
(
x
->
twopassfile
);
if
(
x
->
intra_matrix
!=
NULL
)
av_free
(
x
->
intra_matrix
);
if
(
x
->
inter_matrix
!=
NULL
)
av_free
(
x
->
inter_matrix
);
av_free
(
x
->
twopassfile
);
av_free
(
x
->
intra_matrix
);
av_free
(
x
->
inter_matrix
);
return
0
;
}
...
...
libavcodec/mpegaudiodec.c
View file @
437fb1c8
...
...
@@ -2227,8 +2227,7 @@ static av_cold int decode_close_mp3on4(AVCodecContext * avctx)
int
i
;
for
(
i
=
0
;
i
<
s
->
frames
;
i
++
)
if
(
s
->
mp3decctx
[
i
])
av_free
(
s
->
mp3decctx
[
i
]);
av_free
(
s
->
mp3decctx
[
i
]);
return
0
;
}
...
...
libavcodec/smacker.c
View file @
437fb1c8
...
...
@@ -677,12 +677,9 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
for
(
i
=
0
;
i
<
4
;
i
++
)
{
if
(
vlc
[
i
].
table
)
free_vlc
(
&
vlc
[
i
]);
if
(
h
[
i
].
bits
)
av_free
(
h
[
i
].
bits
);
if
(
h
[
i
].
lengths
)
av_free
(
h
[
i
].
lengths
);
if
(
h
[
i
].
values
)
av_free
(
h
[
i
].
values
);
av_free
(
h
[
i
].
bits
);
av_free
(
h
[
i
].
lengths
);
av_free
(
h
[
i
].
values
);
}
*
data_size
=
unp_size
;
...
...
libavcodec/truemotion2.c
View file @
437fb1c8
...
...
@@ -185,8 +185,7 @@ static int tm2_build_huff_table(TM2Context *ctx, TM2Codes *code)
static
void
tm2_free_codes
(
TM2Codes
*
code
)
{
if
(
code
->
recode
)
av_free
(
code
->
recode
);
av_free
(
code
->
recode
);
if
(
code
->
vlc
.
table
)
free_vlc
(
&
code
->
vlc
);
}
...
...
@@ -859,13 +858,10 @@ static av_cold int decode_end(AVCodecContext *avctx){
AVFrame
*
pic
=
&
l
->
pic
;
int
i
;
if
(
l
->
last
)
av_free
(
l
->
last
);
if
(
l
->
clast
)
av_free
(
l
->
clast
);
av_free
(
l
->
last
);
av_free
(
l
->
clast
);
for
(
i
=
0
;
i
<
TM2_NUM_STREAMS
;
i
++
)
if
(
l
->
tokens
[
i
])
av_free
(
l
->
tokens
[
i
]);
av_free
(
l
->
tokens
[
i
]);
if
(
l
->
Y1
){
av_free
(
l
->
Y1
);
av_free
(
l
->
U1
);
...
...
libavcodec/tta.c
View file @
437fb1c8
...
...
@@ -449,8 +449,7 @@ static int tta_decode_frame(AVCodecContext *avctx,
static
av_cold
int
tta_decode_close
(
AVCodecContext
*
avctx
)
{
TTAContext
*
s
=
avctx
->
priv_data
;
if
(
s
->
decode_buffer
)
av_free
(
s
->
decode_buffer
);
av_free
(
s
->
decode_buffer
);
av_freep
(
&
s
->
ch_ctx
);
return
0
;
...
...
libavformat/rtpdec_mpeg4.c
View file @
437fb1c8
...
...
@@ -111,8 +111,7 @@ static int parse_fmtp_config(AVCodecContext * codec, char *value)
{
/* decode the hexa encoded parameter */
int
len
=
ff_hex_to_data
(
NULL
,
value
);
if
(
codec
->
extradata
)
av_free
(
codec
->
extradata
);
av_free
(
codec
->
extradata
);
codec
->
extradata
=
av_mallocz
(
len
+
FF_INPUT_BUFFER_PADDING_SIZE
);
if
(
!
codec
->
extradata
)
return
AVERROR
(
ENOMEM
);
...
...
libavformat/smacker.c
View file @
437fb1c8
...
...
@@ -334,12 +334,9 @@ static int smacker_read_close(AVFormatContext *s)
int
i
;
for
(
i
=
0
;
i
<
7
;
i
++
)
if
(
smk
->
bufs
[
i
])
av_free
(
smk
->
bufs
[
i
]);
if
(
smk
->
frm_size
)
av_free
(
smk
->
frm_size
);
if
(
smk
->
frm_flags
)
av_free
(
smk
->
frm_flags
);
av_free
(
smk
->
bufs
[
i
]);
av_free
(
smk
->
frm_size
);
av_free
(
smk
->
frm_flags
);
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment