On Mon, Mar 30, 2020 at 10:36:30 +0530, gautamr...@gmail.com wrote: > - if (bytestream2_get_bytes_left(&s->g) == 0 && s->bit_index == 8) { > - if (*tp_index < FF_ARRAY_ELEMS(tile->tile_part) - 1) { > - s->g = tile->tile_part[++(*tp_index)].tpg; > + // Select appropriate stream to read from > + if (tile->has_ppt) { > + s->g = tile->packed_headers_stream; > + } else { > + s->g = tile->tile_part[*tp_index].tpg; > + if (bytestream2_get_bytes_left(&s->g) == 0 && s->bit_index == 8) > { > + if (*tp_index < FF_ARRAY_ELEMS(tile->tile_part) - 1) { > + s->g = tile->tile_part[++(*tp_index)].tpg; > + }
Identation looks incorrect here. Moritz _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".