Browse Source

* simplification patch by Jeffrey Ryan Muizelaar

Originally committed as revision 3491 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Jeff Muizelaar Roman Shaposhnik 21 years ago
parent
commit
21e1913175
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/dv.c

+ 1
- 2
libavcodec/dv.c View File

@@ -394,8 +394,7 @@ static inline void dv_decode_video_segment(DVVideoContext *s,
init_get_bits(&gb, buf_ptr, last_index);
/* get the dc */
dc = get_bits(&gb, 9);
dc = (dc << (32 - 9)) >> (32 - 9);
dc = get_sbits(&gb, 9);
dct_mode = get_bits1(&gb);
mb->dct_mode = dct_mode;
mb->scan_table = s->dv_zigzag[dct_mode];


Loading…
Cancel
Save