comparison h264.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 966aa6b53dcf
children fd2c3b786dcf
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
1688 1688
1689 h->current_slice=0; 1689 h->current_slice=0;
1690 } 1690 }
1691 1691
1692 /** 1692 /**
1693 * Replicates H264 "master" context to thread contexts. 1693 * Replicate H264 "master" context to thread contexts.
1694 */ 1694 */
1695 static void clone_slice(H264Context *dst, H264Context *src) 1695 static void clone_slice(H264Context *dst, H264Context *src)
1696 { 1696 {
1697 memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset)); 1697 memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
1698 dst->s.current_picture_ptr = src->s.current_picture_ptr; 1698 dst->s.current_picture_ptr = src->s.current_picture_ptr;