summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-02-26 00:10:35 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-02-26 00:10:35 +0000
commit6e2fe0f20a03de242ed3b0d6c14c4f8282174581 (patch)
treea5c534825493ab0c5e58c8398785b74162351709
parentaa5ee59eeed827902d637e35da53c69cb7f67aef (diff)
Remove unneeded line of code from the neighbor setting code in h264.
Originally committed as revision 22067 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/h264.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index b30ce1c03b..d21b16e4da 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -795,7 +795,6 @@ static void fill_decode_neighbors(H264Context *h, int mb_type){
top_xy += s->mb_stride & (((s->current_picture.mb_type[top_xy ]>>7)&1)-1);
}
if (left_mb_field_flag != curr_mb_field_flag) {
- left_xy[1] = left_xy[0] = mb_xy - 1;
if (curr_mb_field_flag) {
left_xy[1] += s->mb_stride;
h->left_block = left_block_options[3];