diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-19 03:33:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-19 03:33:23 +0000 |
commit | 7c4f71c428327c57247cb2d2c55fcda6c878e24a (patch) | |
tree | 0a7e62531511d6b7b3a5275af4db122082e2b81f /libavcodec/mpeg12.c | |
parent | 8857a7ef32439b6cadea6707effd686786919084 (diff) | |
download | ffmpeg-7c4f71c428327c57247cb2d2c55fcda6c878e24a.tar.gz |
exporting field_select/ref_index values
Originally committed as revision 3035 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index e169224934..639ea365d6 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2341,11 +2341,13 @@ static int mpeg_decode_slice(Mpeg1Context *s1, int mb_y, motion_x = s->mv[dir][i][0]; motion_y = s->mv[dir][i][1]; } - + s->current_picture.motion_val[dir][xy ][0] = motion_x; s->current_picture.motion_val[dir][xy ][1] = motion_y; s->current_picture.motion_val[dir][xy + 1][0] = motion_x; s->current_picture.motion_val[dir][xy + 1][1] = motion_y; + s->current_picture.ref_index [dir][xy ]= + s->current_picture.ref_index [dir][xy + 1]= s->field_select[dir][i]; } xy += wrap; } |