~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libswresample/swresample.h

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 * matrix):
45
45
 * @code
46
46
 * SwrContext *swr = swr_alloc();
47
 
 * av_opt_set_int(swr, "in_channel_layout",  AV_CH_LAYOUT_5POINT1, 0);
48
 
 * av_opt_set_int(swr, "out_channel_layout", AV_CH_LAYOUT_STEREO,  0);
 
47
 * av_opt_set_channel_layout(swr, "in_channel_layout",  AV_CH_LAYOUT_5POINT1, 0);
 
48
 * av_opt_set_channel_layout(swr, "out_channel_layout", AV_CH_LAYOUT_STEREO,  0);
49
49
 * av_opt_set_int(swr, "in_sample_rate",     48000,                0);
50
50
 * av_opt_set_int(swr, "out_sample_rate",    44100,                0);
51
51
 * av_opt_set_sample_fmt(swr, "in_sample_fmt",  AV_SAMPLE_FMT_FLTP, 0);