Changeset 176:5cb085bb9351 in roaraudio


Ignore:
Timestamp:
07/20/08 01:12:55 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

we need the codec ID...

Location:
roard
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • roard/codecfilter.c

    r175 r176  
    44 
    55struct roar_codecfilter g_codecfilter[] = { 
    6  {"null", "null codec filter", NULL,                      NULL, NULL, NULL, NULL, NULL, NULL}, 
    7  {"cmd",  "ogg123",            "ogg123 -q -d raw -f - -", NULL, NULL, NULL, NULL, NULL, NULL}, 
    8  {NULL,   NULL,                NULL,                      NULL, NULL, NULL, NULL, NULL, NULL} // end of list 
     6 {-1, "null", "null codec filter", NULL,                      NULL, NULL, NULL, NULL, NULL, NULL}, 
     7 {-1, "cmd",  "ogg123",            "ogg123 -q -d raw -f - -", NULL, NULL, NULL, NULL, NULL, NULL}, 
     8 {-1, NULL,   NULL,                NULL,                      NULL, NULL, NULL, NULL, NULL, NULL} // end of list 
    99}; 
    1010 
  • roard/include/codecfilter.h

    r174 r176  
    1010 
    1111struct roar_codecfilter { 
     12 int    codec; 
    1213 char * name; 
    1314 char * desc; 
Note: See TracChangeset for help on using the changeset viewer.