Fixed a bug in the avi encoder with wrong alignment.

Original commit message from CVS:
Fixed a bug in the avi encoder with wrong alignment.
This commit is contained in:
Wim Taymans 2001-06-12 19:47:41 +00:00
parent 0c383d7306
commit f462526422

View file

@ -30,7 +30,7 @@
chunk = (gst_riff_chunk *)(riffenc->dataleft + riffenc->nextlikely);\
chunk->id = chunkid; \
chunk->size = chunksize; \
riffenc->nextlikely += sizeof(gst_riff_chunk) + (chunksize&1); \
riffenc->nextlikely += sizeof(gst_riff_chunk); \
}
#define ADD_LIST(riffenc, listsize, listtype) \