MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / stereo_split

Function stereo_split

libavcodec/resample.c:107–115  ·  view source on GitHub ↗

XXX: should use more abstract 'N' channels system */

Source from the content-addressed store, hash-verified

105
106/* XXX: should use more abstract 'N' channels system */
107static void stereo_split(short *output1, short *output2, short *input, int n)
108{
109 int i;
110
111 for(i=0;i<n;i++) {
112 *output1++ = *input++;
113 *output2++ = *input++;
114 }
115}
116
117static void stereo_mux(short *output, short *input1, short *input2, int n)
118{

Callers 1

audio_resampleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected