diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-12-23 18:08:00 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-12-23 18:08:00 +0000 |
commit | efc90ebfcbe19efc236eb9f17af0f67145ae3828 (patch) | |
tree | 710d213ca9149d3f1f716a515e4002137beb77b3 /libavformat/asf.c | |
parent | 6b646b068ee1bc3afe5fb1edc344433e37cca96a (diff) | |
download | ffmpeg-efc90ebfcbe19efc236eb9f17af0f67145ae3828.tar.gz |
begining -> beginning typo fix
Originally committed as revision 11309 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index e7bc448251..b356a34459 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -694,7 +694,7 @@ static int asf_read_frame_header(AVFormatContext *s){ url_fskip(pb, asf->packet_replic_size - 8); rsize += asf->packet_replic_size; // FIXME - check validity } else if (asf->packet_replic_size==1){ - // multipacket - frag_offset is begining timestamp + // multipacket - frag_offset is beginning timestamp asf->packet_time_start = asf->packet_frag_offset; asf->packet_frag_offset = 0; asf->packet_frag_timestamp = asf->packet_timestamp; @@ -778,7 +778,7 @@ static int asf_read_packet(AVFormatContext *s, AVPacket *pkt) asf_st = asf->asf_st; if (asf->packet_replic_size == 1) { - // frag_offset is here used as the begining timestamp + // frag_offset is here used as the beginning timestamp asf->packet_frag_timestamp = asf->packet_time_start; asf->packet_time_start += asf->packet_time_delta; asf->packet_obj_size = asf->packet_frag_size = get_byte(pb); |