Browse Source

Implement MS_DECODER_HAVE_PLC

pull/1/head
Yann Diorcet 14 years ago
parent
commit
778ec98582
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      msbcg729/bcg729_dec.c

+ 7
- 1
msbcg729/bcg729_dec.c View File

@ -78,11 +78,17 @@ static void filter_uninit(MSFilter *f){
ms_free(f->data);
}
static int filter_have_plc(MSFilter *f, void *arg)
{
*((int *)arg) = 1;
return 0;
}
/*filter specific method*/
static MSFilterMethod filter_methods[]={
{ 0, NULL}
{ MS_DECODER_HAVE_PLC , filter_have_plc },
{ 0 , NULL }
};


Loading…
Cancel
Save