Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: silk/PLC.h

Issue 882843002: Update to opus-HEAD-66611f1. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/opus.git@master
Patch Set: Add the contents of Makefile.mips back. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « silk/NSQ_del_dec.c ('k') | silk/PLC.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /*********************************************************************** 1 /***********************************************************************
2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
3 Redistribution and use in source and binary forms, with or without 3 Redistribution and use in source and binary forms, with or without
4 modification, are permitted provided that the following conditions 4 modification, are permitted provided that the following conditions
5 are met: 5 are met:
6 - Redistributions of source code must retain the above copyright notice, 6 - Redistributions of source code must retain the above copyright notice,
7 this list of conditions and the following disclaimer. 7 this list of conditions and the following disclaimer.
8 - Redistributions in binary form must reproduce the above copyright 8 - Redistributions in binary form must reproduce the above copyright
9 notice, this list of conditions and the following disclaimer in the 9 notice, this list of conditions and the following disclaimer in the
10 documentation and/or other materials provided with the distribution. 10 documentation and/or other materials provided with the distribution.
(...skipping 30 matching lines...) Expand all
41 #define PITCH_DRIFT_FAC_Q16 655 /* 0.01 in Q16 */ 41 #define PITCH_DRIFT_FAC_Q16 655 /* 0.01 in Q16 */
42 42
43 void silk_PLC_Reset( 43 void silk_PLC_Reset(
44 silk_decoder_state *psDec /* I/O Decoder state */ 44 silk_decoder_state *psDec /* I/O Decoder state */
45 ); 45 );
46 46
47 void silk_PLC( 47 void silk_PLC(
48 silk_decoder_state *psDec, /* I/O Decoder state */ 48 silk_decoder_state *psDec, /* I/O Decoder state */
49 silk_decoder_control *psDecCtrl, /* I/O Decoder contr ol */ 49 silk_decoder_control *psDecCtrl, /* I/O Decoder contr ol */
50 opus_int16 frame[], /* I/O signal */ 50 opus_int16 frame[], /* I/O signal */
51 opus_int lost /* I Loss flag */ 51 opus_int lost, /* I Loss flag */
52 int arch /* I Run-time archit ecture */
52 ); 53 );
53 54
54 void silk_PLC_glue_frames( 55 void silk_PLC_glue_frames(
55 silk_decoder_state *psDec, /* I/O decoder state */ 56 silk_decoder_state *psDec, /* I/O decoder state */
56 opus_int16 frame[], /* I/O signal */ 57 opus_int16 frame[], /* I/O signal */
57 opus_int length /* I length of signa l */ 58 opus_int length /* I length of signa l */
58 ); 59 );
59 60
60 #endif 61 #endif
61 62
OLDNEW
« no previous file with comments | « silk/NSQ_del_dec.c ('k') | silk/PLC.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698