HomeSort by relevance Sort by last modified time
    Searched full:vuip (Results 1 - 1 of 1) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
SeqParameterSet.java 194 VUIParameters vuip = new VUIParameters(); local
195 vuip.aspect_ratio_info_present_flag = reader
197 if (vuip.aspect_ratio_info_present_flag) {
198 vuip.aspect_ratio = AspectRatio.fromValue((int) reader.readNBit(8,
200 if (vuip.aspect_ratio == AspectRatio.Extended_SAR) {
201 vuip.sar_width = (int) reader.readNBit(16, "VUI: sar_width");
202 vuip.sar_height = (int) reader.readNBit(16, "VUI: sar_height");
205 vuip.overscan_info_present_flag = reader
207 if (vuip.overscan_info_present_flag) {
208 vuip.overscan_appropriate_flag = reade
    [all...]

Completed in 153 milliseconds