Changeset 489
- Timestamp:
- 01/13/16 00:33:48 (9 years ago)
- Location:
- libmpc/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/include/mpc/mpcdec.h
r431 r489 117 117 /// decode frame 118 118 MPC_API mpc_status mpc_demux_decode(mpc_demux * d, mpc_frame_info * i); 119 /// decode frame : use mpc_demux_decode() instead. This function is only used by mpc2sv8. 120 MPC_API mpc_status mpc_demux_decode_inner(mpc_demux * d, mpc_frame_info * i); 119 121 /// get streaminfo 120 122 MPC_API void mpc_demux_get_info(mpc_demux * d, mpc_streaminfo * i); -
libmpc/trunk/libmpcdec/mpc_demux.c
r478 r489 567 567 } 568 568 569 staticmpc_status mpc_demux_decode_inner(mpc_demux * d, mpc_frame_info * i)569 mpc_status mpc_demux_decode_inner(mpc_demux * d, mpc_frame_info * i) 570 570 { 571 571 mpc_bits_reader r; -
libmpc/trunk/mpc2sv8/mpc2sv8.c
r473 r489 163 163 164 164 demux->d->samples_to_skip = MPC_FRAME_LENGTH + MPC_DECODER_SYNTH_DELAY; 165 err = mpc_demux_decode(demux, &frame);166 167 if(frame.bits == -1) break;165 err = mpc_demux_decode_inner(demux, &frame); 166 167 if (MPC_IS_FAILURE(err) || frame.bits == -1) break; 168 168 169 169 datacpy(demux->d, &e);
Note: See TracChangeset
for help on using the changeset viewer.