Skip to content
Permalink
master

Commits on Jul 19, 2020

  1. Merge pull request #307 from AOMediaCodec/dependabot/bundler/jekyll-3…

    ….6.3
    
    Bump jekyll from 3.3.1 to 3.6.3
    louquillio committed Jul 19, 2020
  2. Bump jekyll from 3.3.1 to 3.6.3

    Bumps [jekyll](https://github.com/jekyll/jekyll) from 3.3.1 to 3.6.3.
    - [Release notes](https://github.com/jekyll/jekyll/releases)
    - [Changelog](https://github.com/jekyll/jekyll/blob/master/History.markdown)
    - [Commits](jekyll/jekyll@v3.3.1...v3.6.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot committed Jul 19, 2020
  3. Merge pull request #306 from AOMediaCodec/dependabot/npm_and_yarn/lod…

    …ash-4.17.19
    
    Bump lodash from 4.17.11 to 4.17.19
    louquillio committed Jul 19, 2020

Commits on Jul 15, 2020

  1. Bump lodash from 4.17.11 to 4.17.19

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.19.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@4.17.11...4.17.19)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot committed Jul 15, 2020

Commits on Jan 6, 2020

  1. Clarify RAP in the decoder model (#294)

    BUG=aomedia:2372
    andrey-norkin authored and peterderivaz committed Jan 6, 2020

Commits on Oct 30, 2019

  1. [Editorial] Add definition of the term tier

    Add a definition of the term "tier" to Section 2.
    
    BUG=aomedia:2380
    wantehchang authored and peterderivaz committed Oct 30, 2019

Commits on Sep 9, 2019

  1. Merge pull request #281 from AOMediaCodec/eleft-patch-4-1

    RTC SG clarifications on high-level syntax
    agrange committed Sep 9, 2019
  2. Merge pull request #280 from AOMediaCodec/eleft-patch-4

    OBU ordering clarification
    agrange committed Sep 9, 2019

Commits on Aug 20, 2019

  1. Update 08.decoding.process.md

    eleft committed Aug 20, 2019

Commits on Aug 13, 2019

  1. Correct start_decode_at_removal_time (#287)

    The decoder model tracks which reference frames can be freed.
    This correction ensures that all relevant frames are freed instead of just checking the first one. 
    
    BUG=aomedia:2370
    peterderivaz committed Aug 13, 2019

Commits on Jul 29, 2019

  1. Minor editorial update

    Change 1/0 values in layer-specific table entries to Y/N. Changed T35 layer-specific info from application-specific to payload-specific.
    eleft committed Jul 29, 2019

Commits on Jun 27, 2019

  1. Merge pull request #289 from jzern/patch-1

    [Editorial] remove mask blend 4:4:0 condition
    agrange committed Jun 27, 2019

Commits on Jun 26, 2019

Commits on Jun 14, 2019

  1. [Editorial] remove mask blend 4:4:0 condition

    subsampling_x = 0 and subsampling_y = 1 corresponds to 4:4:0, this is a left over from vp9.
    https://crbug.com/aomedia/2399
    jzern committed Jun 14, 2019

Commits on Jun 10, 2019

Commits on Jun 8, 2019

Commits on May 27, 2019

  1. Inferred temporal_id and spatial_id values

    Apply only to frame-related OBUs.
    eleft committed May 27, 2019

Commits on Apr 16, 2019

  1. Clarify that OBU_FRAME cannot contain a redundant frame header (#278)

    BUG=aomedia:2328
    peterderivaz committed Apr 16, 2019

Commits on Mar 21, 2019

  1. [Editorial] Remove "n-bit" from the description of uvlc(). (#284)

    "n-bit" implies a fixed length, so it contradicts "Variable length" in the description. Also, the variable 'n' does not appear in the description of uvlc().
    wantehchang authored and peterderivaz committed Mar 21, 2019

Commits on Mar 11, 2019

Commits on Mar 3, 2019

  1. Update 08.decoding.process.md

    eleft committed Mar 3, 2019
  2. RTC SG clarifications on high level syntax

    Clarifications on the use of OBU extension header in various OBU types as well as the scope of metadata OBUs.
    eleft committed Mar 3, 2019

Commits on Feb 25, 2019

  1. [Editorial] Remove invalid note about tile dependency (#271)

    VP9 allowed information to be used from the tile above.
    This has been corrected in AV1 so the note is no longer needed.
    peterderivaz committed Feb 25, 2019
  2. [Editorial] Remove duplicate definition of SKIP_CONTEXTS

    agrange authored and peterderivaz committed Feb 25, 2019
  3. [Editorial] Merge for loops in reference frame update process (#276)

    The two for loops in the reference frame update process do not have any dependency between them and therefore can be merged.
    wantehchang authored and peterderivaz committed Feb 25, 2019

Commits on Feb 19, 2019

  1. Merge pull request #277 from louquillio/add-patents-file

    Add PATENTS file, as Markdown text
    louquillio committed Feb 19, 2019
  2. Add PATENTS file, as Markdown text

    * Create file and add text from https://aomedia.org/license/patent-license/
    * Convert fancy glyphs to plain
    * Markdown-ify text
    louquillio committed Feb 19, 2019

Commits on Feb 12, 2019

  1. [Editorial] Correct capitalization of reference_select

    Do not capitalize the syntax element name "reference_select", even when it appears at the beginning of a sentence. This is the style used in the spec.
    wantehchang authored and peterderivaz committed Feb 12, 2019
  2. [Editorial] Do not clear GmType in setup_past_independence

    setup_past_independence() does not need to set GmType[ ref ] to IDENTITY.
    
    See https://crbug.com/aomedia/2301. Although it is harmless to set a field unnecessarily, it may mislead someone who is trying to analyze the spec. I propose we remove this line to avoid potential misunderstanding during spec analysis.
    
    BUG=aomedia:2301
    wantehchang authored and peterderivaz committed Feb 12, 2019
  3. [Editorial] Clarify segmentation map definition

    Make it clear that the segmentation map specifies a segment affiliation for each 4x4 block in the frame.
    
    BUG=aomedia:2314
    agrange authored and peterderivaz committed Feb 12, 2019

Commits on Feb 5, 2019

  1. [Editorial] Clarify limits for tile size

    The tile width and area limits were expressed using "less".  
    This should have used less than or equal to allow the maximum tile dimensions to be reached.
    peterderivaz committed Feb 5, 2019
  2. [Editorial] Use term segmentation map consistently

    Change "segment map" to "segmentation map" (the prevalent form used in the spec) for consistency.
    wantehchang authored and peterderivaz committed Feb 5, 2019
Older