ATSParser.h (9bf32f06e8971c1d3eb4fc5edd74b69557f97212) ATSParser.h (fef808d42a9c94b0b5ef3c3d5fb0a090edbc42da)
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0

--- 27 unchanged lines hidden (view full) ---

36 enum DiscontinuityType {
37 DISCONTINUITY_NONE = 0,
38 DISCONTINUITY_TIME = 1,
39 DISCONTINUITY_AUDIO_FORMAT = 2,
40 DISCONTINUITY_VIDEO_FORMAT = 4,
41 DISCONTINUITY_ABSOLUTE_TIME = 8,
42 DISCONTINUITY_TIME_OFFSET = 16,
43
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0

--- 27 unchanged lines hidden (view full) ---

36 enum DiscontinuityType {
37 DISCONTINUITY_NONE = 0,
38 DISCONTINUITY_TIME = 1,
39 DISCONTINUITY_AUDIO_FORMAT = 2,
40 DISCONTINUITY_VIDEO_FORMAT = 4,
41 DISCONTINUITY_ABSOLUTE_TIME = 8,
42 DISCONTINUITY_TIME_OFFSET = 16,
43
44 DISCONTINUITY_SEEK = DISCONTINUITY_TIME,
45
46 // For legacy reasons this also implies a time discontinuity.
47 DISCONTINUITY_FORMATCHANGE =
48 DISCONTINUITY_AUDIO_FORMAT
49 | DISCONTINUITY_VIDEO_FORMAT
50 | DISCONTINUITY_TIME,
51 };
52
53 enum Flags {

--- 93 unchanged lines hidden ---
44 // For legacy reasons this also implies a time discontinuity.
45 DISCONTINUITY_FORMATCHANGE =
46 DISCONTINUITY_AUDIO_FORMAT
47 | DISCONTINUITY_VIDEO_FORMAT
48 | DISCONTINUITY_TIME,
49 };
50
51 enum Flags {

--- 93 unchanged lines hidden ---