Skip to content

Commit

Permalink
Add more fields to the VP9 timeseries trace. (#2100)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox authored Feb 21, 2024
1 parent ef51846 commit b227786
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,18 @@ class Vp9AdaptiveSourceProjectionContext(
.addField("pictureId", packet.pictureId)
.addField("pictureIdIndex", frame.index)
.addField("encoding", incomingEncoding)
.addField("keyframe", packet.isKeyframe)
.addField("spatialLayer", packet.spatialLayerIndex)
.addField("temporalLayer", packet.temporalLayerIndex)
.addField("isInterPicturePredicted", packet.isInterPicturePredicted)
.addField("usesInterLayerDependency", packet.usesInterLayerDependency)
.addField("isUpperLevelReference", packet.isUpperLevelReference)
.addField("startOfFrame", packet.isStartOfFrame)
.addField("endOfFrame", packet.isEndOfFrame)
.addField("mark", packet.isMarked)
.addField("targetIndex", indexString(targetIndex))
.addField("new_frame", result.isNewFrame)
.addField("reset", result.isReset)
.addField("accept", accept)
vp9QualityFilter.addDiagnosticContext(pt)
timeSeriesLogger.trace(pt)
Expand Down

0 comments on commit b227786

Please sign in to comment.