Skip to content
Snippets Groups Projects
Commit f4625264 authored by Wim Taymans's avatar Wim Taymans
Browse files

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.
parent 0c383d73
No related branches found
No related tags found
No related merge requests found
......@@ -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) \
......
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