diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-07-30 14:44:38 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-07-30 14:44:38 +0000 |
commit | adb0208bf2658215833a9e5b119aeab38d214100 (patch) | |
tree | 55e26fae357fa4cca73276ceb3f60a9aca036fdc | |
parent | 8295eb302f097c4b8e100401c9b318362a721eab (diff) | |
download | ffmpeg-adb0208bf2658215833a9e5b119aeab38d214100.tar.gz |
Fix typo in comment
Originally committed as revision 5865 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/gxf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c index 7cc1d39108..09a60dbc0c 100644 --- a/libavformat/gxf.c +++ b/libavformat/gxf.c @@ -231,7 +231,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) { get_byte(pb); // flags get_byte(pb); // reserved // NOTE: there is also data length information in the - // field information, it might be better to take this int account + // field information, it might be better to take this into account // as well. ret = av_get_packet(pb, pkt, pkt_len); pkt->stream_index = get_sindex(s, track_id, track_type); |