Changeset 4030
- Timestamp:
- Apr 9, 2012 6:56:57 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x/pjmedia/src/pjmedia/wav_player.c
r3846 r4030 453 453 { 454 454 struct file_reader_port *fport; 455 pj_status_t status; 455 456 456 457 /* Sanity check */ … … 473 474 474 475 fport->eof = PJ_FALSE; 475 return fill_buffer(fport); 476 status = fill_buffer(fport); 477 if (status != PJ_SUCCESS) 478 return status; 479 480 fport->readpos = fport->buf; 481 482 return PJ_SUCCESS; 476 483 } 477 484
Note: See TracChangeset
for help on using the changeset viewer.