diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-22 01:21:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-22 01:21:16 +0000 |
commit | b83e83b915d79a5ff9b71b75e7dfcb20851b6adf (patch) | |
tree | fadba241032610a13f11f09582e491c82c3f4581 /libavformat | |
parent | 98cc3cea333f341390ef53e1ac26d52899a30eea (diff) | |
download | ffmpeg-b83e83b915d79a5ff9b71b75e7dfcb20851b6adf.tar.gz |
cosmetic
Originally committed as revision 7639 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/asf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index 09524d8d00..217ed57196 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -722,7 +722,7 @@ static int asf_read_packet(AVFormatContext *s, AVPacket *pkt) } } asf_st->frag_offset = 0; - memcpy(pkt, &asf_st->pkt, sizeof(AVPacket)); + *pkt= asf_st->pkt; //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size); asf_st->pkt.size = 0; asf_st->pkt.data = 0; |