Skip to content

Commit 1cd4c48

Browse files
committed
Adjust repo name to "webcodecs"
This update drops the hyphen as discussed in: #149 (comment) It also updates the new registry files following rebase.
1 parent 0e89c8b commit 1cd4c48

5 files changed

+25
-25
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ https://developers.chrome.com/origintrials/#/register_trial/-7811493553674125311
1111

1212
# WebCodecs
1313

14-
The [WebCodecs API](https://w3c.github.io/web-codecs/) allows web applications
14+
The [WebCodecs API](https://w3c.github.io/webcodecs/) allows web applications
1515
to encode and decode audio and video.
1616

1717
Many Web APIs use media codecs internally to support APIs for particular uses:
@@ -32,5 +32,5 @@ It's great for:
3232
- Cloud gaming
3333
- Media file editing and transcoding
3434

35-
See the [explainer](https://github.com/w3c/web-codecs/blob/main/explainer.md) for more info.
35+
See the [explainer](https://github.com/w3c/webcodecs/blob/main/explainer.md) for more info.
3636

Diff for: avc_codec_registration.src.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<pre class='metadata'>
22
Title: AVC (H.264) WebCodecs Registration
3-
Repository: wicg/web-codecs
4-
Status: CG-DRAFT
3+
Repository: w3c/webcodecs
4+
Status: ED
55
Shortname: webcodecs-avc-codec-registration
66
Level: none
7-
Group: wicg
7+
Group: mediawg
88
ED: none
99
Editor: Chris Cunningham, w3cid 114832, Google Inc. https://google.com/
1010
Editor: Paul Adenot, w3cid 62410, Mozilla https://www.mozilla.org/
@@ -25,9 +25,9 @@
2525
This registration is non-normative.
2626

2727
Markup Shorthands:css no, markdown yes, dfn yes
28-
!Participate: <a href="https://github.com/wicg/web-codecs">Git Repository.</a>
29-
!Participate: <a href="https://github.com/wicg/web-codecs/issues/new">File an issue.</a>
30-
!Version History: <a href="https://github.com/wicg/web-codecs/commits">https://github.com/wicg/web-codecs/commits</a>
28+
!Participate: <a href="https://github.com/w3c/webcodecs">Git Repository.</a>
29+
!Participate: <a href="https://github.com/w3c/webcodecs/issues/new">File an issue.</a>
30+
!Version History: <a href="https://github.com/w3c/webcodecs/commits">https://github.com/w3c/webcodecs/commits</a>
3131
</pre>
3232

3333
<pre class='anchors'>

Diff for: codec_registry.src.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<pre class='metadata'>
22
Title: WebCodecs Codec Registry
3-
Repository: wicg/web-codecs
4-
Status: CG-DRAFT
3+
Repository: w3c/webcodecs
4+
Status: ED
55
Shortname: webcodecs-codec-registry
66
Level: none
7-
Group: wicg
7+
Group: mediawg
88
ED: none
99
Editor: Chris Cunningham, w3cid 114832, Google Inc. https://google.com/
1010
Editor: Paul Adenot, w3cid 62410, Mozilla https://www.mozilla.org/
@@ -28,9 +28,9 @@
2828
This registry is non-normative.
2929

3030
Markup Shorthands:css no, markdown yes, dfn yes
31-
!Participate: <a href="https://github.com/wicg/web-codecs">Git Repository.</a>
32-
!Participate: <a href="https://github.com/wicg/web-codecs/issues/new">File an issue.</a>
33-
!Version History: <a href="https://github.com/wicg/web-codecs/commits">https://github.com/wicg/web-codecs/commits</a>
31+
!Participate: <a href="https://github.com/w3c/webcodecs">Git Repository.</a>
32+
!Participate: <a href="https://github.com/w3c/webcodecs/issues/new">File an issue.</a>
33+
!Version History: <a href="https://github.com/w3c/webcodecs/commits">https://github.com/w3c/webcodecs/commits</a>
3434
</pre>
3535

3636
<pre class='anchors'>
@@ -84,7 +84,7 @@
8484
registration must link to a public specification describing how to populate
8585
these fields.
8686
4. Candidate entries must be announced by filing an issue in the
87-
[WebCodecs GitHub issue tracker](https://github.com/wicg/web-codecs/issues/)
87+
[WebCodecs GitHub issue tracker](https://github.com/w3c/webcodecs/issues/)
8888
so they can be discussed and evaluated for compliance before being added to
8989
the registry.
9090

Diff for: explainer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Core interfaces include
6262

6363
- **AudioFrame** contains decoded audio data. It will provide an [AudioBuffer](https://webaudio.github.io/web-audio-api/#audiobuffer) for rendering via [AudioWorklet](https://webaudio.github.io/web-audio-api/#audioworklet).
6464

65-
- **VideoFrame** contains decoded video data. It will provide an [ImageBitmap](https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#imagebitmap) for manipulating in WebGL, including rendering to Canvas. It should eventually also [provide access to YUV data](https://github.com/WICG/web-codecs/issues/30), but the design is still TBD.
65+
- **VideoFrame** contains decoded video data. It will provide an [ImageBitmap](https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#imagebitmap) for manipulating in WebGL, including rendering to Canvas. It should eventually also [provide access to YUV data](https://github.com/w3c/webcodecs/issues/30), but the design is still TBD.
6666

6767
- An **AudioEncoder** encodes AudioFrames to produce EncodedAudioChunks.
6868

Diff for: index.src.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<pre class='metadata'>
22
Title: WebCodecs
3-
Repository: w3c/web-codecs
3+
Repository: w3c/webcodecs
44
Status: ED
5-
ED: https://w3c.github.io/web-codecs/
6-
Shortname: web-codecs
5+
ED: https://w3c.github.io/webcodecs/
6+
Shortname: webcodecs
77
Level: None
88
Group: mediawg
99
Editor: Chris Cunningham, w3cid 114832, Google Inc. https://google.com/
@@ -20,9 +20,9 @@
2020
codecs or none at all.
2121

2222
Markup Shorthands:css no, markdown yes, dfn yes
23-
!Participate: <a href="https://github.com/w3c/web-codecs">Git Repository.</a>
24-
!Participate: <a href="https://github.com/w3c/web-codecs/issues/new">File an issue.</a>
25-
!Version History: <a href="https://github.com/w3c/web-codecs/commits">https://github.com/w3c/web-codecs/commits</a>
23+
!Participate: <a href="https://github.com/w3c/webcodecs">Git Repository.</a>
24+
!Participate: <a href="https://github.com/w3c/webcodecs/issues/new">File an issue.</a>
25+
!Version History: <a href="https://github.com/w3c/webcodecs/commits">https://github.com/w3c/webcodecs/commits</a>
2626
</pre>
2727

2828
<pre class='anchors'>
@@ -73,7 +73,7 @@
7373
<pre class='biblio'>
7474
{
7575
"WEBCODECS-CODEC-REGISTRY": {
76-
"href": "https://wicg.github.io/web-codecs/codec_registry.html",
76+
"href": "https://wicg.github.io/webcodecs/codec_registry.html",
7777
"title": "WebCodecs Codec Registry",
7878
"publisher": "WICG"
7979
}
@@ -1119,7 +1119,7 @@
11191119
encode |output|. But, as written, it may occur that |output| was
11201120
encoded using a previous {{VideoEncoderConfig}} that has since
11211121
been replaced by a later call to {{VideoEncoder/configure()}}.
1122-
See [#138](https://github.com/w3c/web-codecs/issues/138).
1122+
See [#138](https://github.com/w3c/webcodecs/issues/138).
11231123

11241124
2. Let |output_config| be a {{VideoDecoderConfig}} that describes
11251125
|output|. Initialize |output_config| as follows:
@@ -2360,7 +2360,7 @@
23602360
immutable.
23612361

23622362
ISSUE: EncodedVideoChunk and EncodedAudioChunk currently expose a mutable
2363-
data. See <a href="https://github.com/w3c/web-codecs/issues/80">#80</a>.
2363+
data. See <a href="https://github.com/w3c/webcodecs/issues/80">#80</a>.
23642364

23652365
Privacy Considerations{#privacy-considerations}
23662366
===============================================

0 commit comments

Comments
 (0)