Skip to content
Snippets Groups Projects
Commit 5b77a81a authored by Michel Bardiaux's avatar Michel Bardiaux
Browse files

Remove code duplicated between adpcm.c and riff.c

Originally committed as revision 8042 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7ad731e9
No related branches found
No related tags found
No related merge requests found
......@@ -364,7 +364,7 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
} else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
put_le16(pb, 2); /* wav_extra_size */
hdrsize += 2;
put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */
put_le16(pb, enc->frame_size); /* wSamplesPerBlock */
} else if(enc->extradata_size){
put_le16(pb, enc->extradata_size);
put_buffer(pb, enc->extradata, enc->extradata_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment