mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Use SMPTE standard notation when showing mxf Universal Labels.
This commit is contained in:
parent
cdb7a1ac63
commit
d714576037
@ -1508,9 +1508,12 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
|
||||
st->codec->codec_id = (enum AVCodecID)codec_ul->id;
|
||||
av_log(mxf->fc, AV_LOG_VERBOSE, "%s: Universal Label: ",
|
||||
avcodec_get_name(st->codec->codec_id));
|
||||
for (k = 0; k < 16; k++)
|
||||
for (k = 0; k < 16; k++) {
|
||||
av_log(mxf->fc, AV_LOG_VERBOSE, "%.2x",
|
||||
descriptor->essence_codec_ul[k]);
|
||||
if (!(k+1 & 19) || k == 5)
|
||||
av_log(mxf->fc, AV_LOG_VERBOSE, ".");
|
||||
}
|
||||
av_log(mxf->fc, AV_LOG_VERBOSE, "\n");
|
||||
if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
|
||||
source_track->intra_only = mxf_is_intra_only(descriptor);
|
||||
|
Loading…
x
Reference in New Issue
Block a user