mirror of
https://github.com/simon987/libscan.git
synced 2025-04-06 04:42:59 +00:00
media meta fix
This commit is contained in:
parent
89180c132f
commit
8798078798
@ -247,10 +247,7 @@ void parse_media_format_ctx(scan_media_ctx_t *ctx, AVFormatContext *pFormatCtx,
|
|||||||
const AVCodecDescriptor *desc = avcodec_descriptor_get(stream->codecpar->codec_id);
|
const AVCodecDescriptor *desc = avcodec_descriptor_get(stream->codecpar->codec_id);
|
||||||
|
|
||||||
if (desc != NULL) {
|
if (desc != NULL) {
|
||||||
meta_line_t *meta_audio = malloc(sizeof(meta_line_t));
|
APPEND_STR_META(doc, MetaMediaAudioCodec, desc->name)
|
||||||
meta_audio->key = MetaMediaAudioCodec;
|
|
||||||
strcpy(meta_audio->str_val, desc->name);
|
|
||||||
APPEND_META(doc, meta_audio)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
append_audio_meta(pFormatCtx, doc);
|
append_audio_meta(pFormatCtx, doc);
|
||||||
@ -263,10 +260,7 @@ void parse_media_format_ctx(scan_media_ctx_t *ctx, AVFormatContext *pFormatCtx,
|
|||||||
|
|
||||||
|
|
||||||
if (desc != NULL) {
|
if (desc != NULL) {
|
||||||
meta_line_t *meta_vid = malloc(sizeof(meta_line_t));
|
APPEND_STR_META(doc, MetaMediaVideoCodec, desc->name)
|
||||||
meta_vid->key = MetaMediaVideoCodec;
|
|
||||||
strcpy(meta_vid->str_val, desc->name);
|
|
||||||
APPEND_META(doc, meta_vid)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
meta_line_t *meta_w = malloc(sizeof(meta_line_t));
|
meta_line_t *meta_w = malloc(sizeof(meta_line_t));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user