Skip to content
Snippets Groups Projects
Commit 200f41ad authored by Aurelien Jacobs's avatar Aurelien Jacobs
Browse files

compute pts according to the audio codec

Originally committed as revision 10803 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ffbd0bcd
No related branches found
No related tags found
No related merge requests found
...@@ -304,10 +304,17 @@ static int ea_read_packet(AVFormatContext *s, ...@@ -304,10 +304,17 @@ static int ea_read_packet(AVFormatContext *s,
pkt->pts *= ea->audio_frame_counter; pkt->pts *= ea->audio_frame_counter;
pkt->pts /= ea->sample_rate; pkt->pts /= ea->sample_rate;
switch (ea->audio_codec) {
case CODEC_ID_ADPCM_EA:
/* 2 samples/byte, 1 or 2 samples per frame depending /* 2 samples/byte, 1 or 2 samples per frame depending
* on stereo; chunk also has 12-byte header */ * on stereo; chunk also has 12-byte header */
ea->audio_frame_counter += ((chunk_size - 12) * 2) / ea->audio_frame_counter += ((chunk_size - 12) * 2) /
ea->num_channels; ea->num_channels;
break;
default:
ea->audio_frame_counter += chunk_size /
(ea->bytes * ea->num_channels);
}
} }
packet_read = 1; packet_read = 1;
......
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