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
ec22979a
Commit
ec22979a
authored
Nov 02, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
id3v2: fix type of ID3v2EMFunc.free()
parent
5511ad14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
id3v2.c
libavformat/id3v2.c
+3
-2
No files found.
libavformat/id3v2.c
View file @
ec22979a
...
@@ -122,8 +122,9 @@ static unsigned int get_size(AVIOContext *s, int len)
...
@@ -122,8 +122,9 @@ static unsigned int get_size(AVIOContext *s, int len)
/**
/**
* Free GEOB type extra metadata.
* Free GEOB type extra metadata.
*/
*/
static
void
free_geobtag
(
ID3v2ExtraMetaGEOB
*
geob
)
static
void
free_geobtag
(
void
*
obj
)
{
{
ID3v2ExtraMetaGEOB
*
geob
=
obj
;
av_free
(
geob
->
mime_type
);
av_free
(
geob
->
mime_type
);
av_free
(
geob
->
file_name
);
av_free
(
geob
->
file_name
);
av_free
(
geob
->
description
);
av_free
(
geob
->
description
);
...
@@ -384,7 +385,7 @@ typedef struct ID3v2EMFunc {
...
@@ -384,7 +385,7 @@ typedef struct ID3v2EMFunc {
const
char
*
tag3
;
const
char
*
tag3
;
const
char
*
tag4
;
const
char
*
tag4
;
void
(
*
read
)(
AVFormatContext
*
,
AVIOContext
*
,
int
,
char
*
,
ID3v2ExtraMeta
**
);
void
(
*
read
)(
AVFormatContext
*
,
AVIOContext
*
,
int
,
char
*
,
ID3v2ExtraMeta
**
);
void
(
*
free
)();
void
(
*
free
)(
void
*
obj
);
}
ID3v2EMFunc
;
}
ID3v2EMFunc
;
static
const
ID3v2EMFunc
id3v2_extra_meta_funcs
[]
=
{
static
const
ID3v2EMFunc
id3v2_extra_meta_funcs
[]
=
{
...
...
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