mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 08:42:39 +00:00
Merge commit '8809c974a3fb51f96e498a5556a4a5bbacc581ce'
* commit '8809c974a3fb51f96e498a5556a4a5bbacc581ce': id3v2: constify the 'tag' parameter to special metadata parsing callback Conflicts: libavformat/id3v2.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
06ec2f1d32
@ -404,7 +404,7 @@ error:
|
||||
* Parse GEOB tag into a ID3v2ExtraMetaGEOB struct.
|
||||
*/
|
||||
static void read_geobtag(AVFormatContext *s, AVIOContext *pb, int taglen,
|
||||
char *tag, ID3v2ExtraMeta **extra_meta, int isv34)
|
||||
const char *tag, ID3v2ExtraMeta **extra_meta, int isv34)
|
||||
{
|
||||
ID3v2ExtraMetaGEOB *geob_data = NULL;
|
||||
ID3v2ExtraMeta *new_extra = NULL;
|
||||
@ -536,7 +536,7 @@ static void free_apic(void *obj)
|
||||
}
|
||||
|
||||
static void read_apic(AVFormatContext *s, AVIOContext *pb, int taglen,
|
||||
char *tag, ID3v2ExtraMeta **extra_meta, int isv34)
|
||||
const char *tag, ID3v2ExtraMeta **extra_meta, int isv34)
|
||||
{
|
||||
int enc, pic_type;
|
||||
char mimetype[64];
|
||||
@ -717,7 +717,7 @@ fail:
|
||||
typedef struct ID3v2EMFunc {
|
||||
const char *tag3;
|
||||
const char *tag4;
|
||||
void (*read)(AVFormatContext *, AVIOContext *, int, char *,
|
||||
void (*read)(AVFormatContext *, AVIOContext *, int, const char *,
|
||||
ID3v2ExtraMeta **, int isv34);
|
||||
void (*free)(void *obj);
|
||||
} ID3v2EMFunc;
|
||||
|
Loading…
Reference in New Issue
Block a user