Lines Matching refs:out_format
96 AudioStreamBasicDescription out_format;
113 size = sizeof(out_format);
116 &size, &out_format)) {
117 if (out_format.mFramesPerPacket)
118 avctx->frame_size = out_format.mFramesPerPacket;
119 if (out_format.mBytesPerPacket && avctx->codec_id == AV_CODEC_ID_ILBC)
120 avctx->block_align = out_format.mBytesPerPacket;
250 AudioStreamBasicDescription out_format = {
264 out_format.mFramesPerPacket = 8000 * mode / 1000;
265 out_format.mBytesPerPacket = (mode == 20 ? 38 : 50);
268 status = AudioConverterNew(&in_format, &out_format, &at->converter);