Skip to content

Commit

Permalink
ppapi: AudioEncode: drop Speex codec
Browse files Browse the repository at this point in the history
Speex was removed from the chromium third party dependencies. Since Opus was
designed as a replacement for Speex, let's just drop Speex from the pepper
api.

BUG=461222

Review URL: https://codereview.chromium.org/1351323002

Cr-Commit-Position: refs/heads/master@{#349658}
  • Loading branch information
llandwerlin-intel authored and Commit bot committed Sep 18, 2015
1 parent 03b0b0d commit e982d80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions ppapi/api/pp_codecs.idl
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ enum PP_VideoProfile {
*/
enum PP_AudioProfile {
PP_AUDIOPROFILE_OPUS = 0,
PP_AUDIOPROFILE_SPEEX = 1,
PP_AUDIOPROFILE_MAX = PP_AUDIOPROFILE_SPEEX
PP_AUDIOPROFILE_MAX = PP_AUDIOPROFILE_OPUS
};

/**
Expand Down
5 changes: 2 additions & 3 deletions ppapi/c/pp_codecs.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* found in the LICENSE file.
*/

/* From pp_codecs.idl modified Thu May 21 15:11:01 2015. */
/* From pp_codecs.idl modified Fri Sep 18 10:42:55 2015. */

#ifndef PPAPI_C_PP_CODECS_H_
#define PPAPI_C_PP_CODECS_H_
Expand Down Expand Up @@ -47,8 +47,7 @@ typedef enum {
*/
typedef enum {
PP_AUDIOPROFILE_OPUS = 0,
PP_AUDIOPROFILE_SPEEX = 1,
PP_AUDIOPROFILE_MAX = PP_AUDIOPROFILE_SPEEX
PP_AUDIOPROFILE_MAX = PP_AUDIOPROFILE_OPUS
} PP_AudioProfile;

/**
Expand Down

0 comments on commit e982d80

Please sign in to comment.