Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
828f30ce
Commit
828f30ce
authored
Mar 29, 2016
by
Adrian Grange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change "Vp8" to "AOM"
Change-Id: I16d78a3715b185b6209b3bc2af68055d6c80b729
parent
030b5ffc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
test/decode_test_driver.cc
test/decode_test_driver.cc
+1
-1
third_party/libwebm/mkvmuxer.cpp
third_party/libwebm/mkvmuxer.cpp
+2
-2
third_party/libwebm/mkvmuxer.hpp
third_party/libwebm/mkvmuxer.hpp
+1
-1
No files found.
test/decode_test_driver.cc
View file @
828f30ce
...
...
@@ -51,7 +51,7 @@ void DecoderTest::HandlePeekResult(Decoder *const decoder,
const
aom_codec_err_t
res_peek
)
{
const
bool
is_aom
=
decoder
->
IsAOM
();
if
(
is_aom
)
{
/*
Vp8
's implementation of PeekStream returns an error if the frame you
/*
AOM
's implementation of PeekStream returns an error if the frame you
* pass it is not a keyframe, so we only expect AOM_CODEC_OK on the first
* frame, which must be a keyframe. */
if
(
video
->
frame_number
()
==
0
)
...
...
third_party/libwebm/mkvmuxer.cpp
View file @
828f30ce
...
...
@@ -1045,7 +1045,7 @@ bool AudioTrack::Write(IMkvWriter* writer) const {
const
char
Tracks
::
kOpusCodecId
[]
=
"A_OPUS"
;
const
char
Tracks
::
kVorbisCodecId
[]
=
"A_VORBIS"
;
const
char
Tracks
::
k
Vp8
CodecId
[]
=
"V_AOM"
;
const
char
Tracks
::
k
AOM
CodecId
[]
=
"V_AOM"
;
const
char
Tracks
::
kVp9CodecId
[]
=
"V_AV1"
;
const
char
Tracks
::
kAV1CodecId
[]
=
"V_AV1"
;
...
...
@@ -2516,7 +2516,7 @@ uint64 Segment::AddVideoTrack(int32 width, int32 height, int32 number) {
return
0
;
track
->
set_type
(
Tracks
::
kVideo
);
track
->
set_codec_id
(
Tracks
::
k
Vp8
CodecId
);
track
->
set_codec_id
(
Tracks
::
k
AOM
CodecId
);
track
->
set_width
(
width
);
track
->
set_height
(
height
);
...
...
third_party/libwebm/mkvmuxer.hpp
View file @
828f30ce
...
...
@@ -535,7 +535,7 @@ class Tracks {
static
const
char
kOpusCodecId
[];
static
const
char
kVorbisCodecId
[];
static
const
char
k
Vp8
CodecId
[];
static
const
char
k
AOM
CodecId
[];
static
const
char
kVp9CodecId
[];
static
const
char
kAV1CodecId
[];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment