• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

xiph / rav1e / 2899 / 1
86%
master: 86%

Build:
DEFAULT BRANCH: master
Ran 15 Mar 2019 10:51AM UTC
Files 30
Run time 1s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

15 Mar 2019 10:36AM UTC coverage: 82.869% (-0.007%) from 82.876%
RUST_BACKTRACE=1

push

travis-ci

rom1v
Retrieve dimensions from plane_cfg

To compute the number of pixels available in the top-right and
bottom-left edges, get_intra_edges() received frame_w_in_b (MiCols) and
frame_h_in_b (MiRows) as parameters, initialized as follow:

    MiCols = 2 * ( ( FrameWidth + 7 ) >> 3 )
    MiRows = 2 * ( ( FrameHeight + 7 ) >> 3 )

<https://aomediacodec.github.io/av1-spec/#compute-image-size-function>

The sizes computed by get_intra_edges() were basically the frame
dimensions rounded up to the next multiple of 8, decimated:

    (MI_SIZE >> plane_cfg.xdec) * frame_w_in_b
    (MI_SIZE >> plane_cfg.ydec) * frame_h_in_b

But in Frame::new(), the luma plane dimensions are also initialized with
the frame dimensions rounded up to the next multiple of 8. Therefore, it
is equivalent to directly use the plane dimensions.

10816 of 13052 relevant lines covered (82.87%)

0.83 hits per line

Source Files on job 2899.1 (RUST_BACKTRACE=1)
  • Tree
  • List 0
  • Changed 3
  • Source Changed 0
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 1063
  • Travis Job 2899.1
  • 590f5f0a on github
  • Prev Job for RUST_BACKTRACE=1 on master (#2893.1)
  • Next Job for RUST_BACKTRACE=1 on master (#2903.1)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc