diff options
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r-- | libavformat/dump.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c index 22ae586146..878eae8c1d 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -359,6 +359,9 @@ static void dump_sidedata(void *ctx, AVStream *st, const char *indent) av_log(ctx, AV_LOG_INFO, "audio service type: "); dump_audioservicetype(ctx, &sd); break; + case AV_PKT_DATA_QUALITY_FACTOR: + av_log(ctx, AV_LOG_INFO, "quality factor: %d", *(int *)sd.data); + break; default: av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)", sd.type, sd.size); |