mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
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:
parent
0c383d7306
commit
f462526422
1 changed files with 1 additions and 1 deletions
|
@ -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) \
|
||||
|
|
Loading…
Reference in a new issue