0

ppapi: AudioEncode: drop Speex codec

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}
This commit is contained in:
lionel.g.landwerlin
2015-09-18 06:33:35 -07:00
committed by Commit bot
parent 03b0b0d396
commit e982d804c5
2 changed files with 3 additions and 5 deletions

@ -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
};
/**

@ -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_
@ -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;
/**