summaryrefslogtreecommitdiff
path: root/libavformat/mxfenc.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-11 06:48:02 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-11 06:48:02 +0000
commitf344ae8096151e7e1b9800239ba8ae30d467279c (patch)
treeeffc18ec3aa496dafd5339b42e0763fc7c752dd2 /libavformat/mxfenc.c
parentcafdc1876a803cfd57f10146dacd790921f15c63 (diff)
again 10l, typo, put_byte instead of put_buffer
Originally committed as revision 17933 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxfenc.c')
-rw-r--r--libavformat/mxfenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 8a0f0fc6d1..0f3a1b373f 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -316,7 +316,7 @@ static void mxf_write_umid(AVFormatContext *s, int type)
put_buffer(s->pb, umid_ul, 13);
put_be24(s->pb, mxf->instance_number);
put_buffer(s->pb, mxf->umid, 15);
- put_buffer(s->pb, mxf->umid, type);
+ put_byte(s->pb, type);
}
static void mxf_write_refs_count(ByteIOContext *pb, int ref_count)