Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
828f30ce
Commit
828f30ce
authored
Mar 29, 2016
by
Adrian Grange
Browse files
Change "Vp8" to "AOM"
Change-Id: I16d78a3715b185b6209b3bc2af68055d6c80b729
parent
030b5ffc
Changes
3
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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