diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-12 23:34:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-12 23:34:23 +0000 |
commit | 5cb46bc722a7691209fcd10f6c2e9d5035989b89 (patch) | |
tree | 3707f5fe5e86f165ce2de2051c1b251565d899c8 | |
parent | efc39ba89a6260f550077d7c37900bb35150a4a6 (diff) | |
download | ffmpeg-5cb46bc722a7691209fcd10f6c2e9d5035989b89.tar.gz |
typo found by Chengji Zhao
Originally committed as revision 4231 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 78cfc51562..436be57a59 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3217,7 +3217,7 @@ static int fill_default_ref_list(H264Context *h){ // L0 and L1 are identical Picture temp= h->default_ref_list[1][0]; h->default_ref_list[1][0] = h->default_ref_list[1][1]; - h->default_ref_list[1][0] = temp; + h->default_ref_list[1][1] = temp; } if(index < h->ref_count[ list ]) |