~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/vc1.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-01-18 15:46:55 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20140118154655-iz6u00yevkat1jqi
Tags: 6:10~alpha2-1
New Upstream release 10_alpha2. This upstream git snapshot has too many
changes to list here, cf. to the upstream Changelog:
http://git.libav.org/?p=libav.git;a=blob;f=Changelog;hb=refs/tags/v10_alpha2

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
    INIT_LUT(32, 0, v->curr_luty[0], v->curr_lutuv[0], 0);
615
615
    INIT_LUT(32, 0, v->curr_luty[1], v->curr_lutuv[1], 0);
616
616
    v->curr_use_ic = 0;
 
617
    if (v->curr_luty == v->next_luty) {
 
618
        // If we just initialized next_lut, clear next_use_ic to match.
 
619
        v->next_use_ic = 0;
 
620
    }
617
621
}
618
622
 
619
623
int ff_vc1_parse_frame_header(VC1Context *v, GetBitContext* gb)
1184
1188
            if (v->bfraction == 0) {
1185
1189
                return -1;
1186
1190
            }
1187
 
            return -1; // This codepath is still incomplete thus it is disabled
1188
1191
        }
1189
1192
        if (v->extended_mv)
1190
1193
            v->mvrange = get_unary(gb, 0, 3);