decoder: remove unused variable
[vlc.git] / modules / packetizer / mpegvideo.h
blobde4fbf56a0016bfc9545db9b87508c2625617ea1
1 /*****************************************************************************
2 * mpegvideo.h: MPEG1/2 video stream definitions
3 *****************************************************************************
4 * Copyright (C) 2020 VideoLabs, VLC authors and VideoLAN
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #define PROFILE_MPEG2_HIGH 1
22 #define PROFILE_MPEG2_SPATIALLY_SCALABLE 2
23 #define PROFILE_MPEG2_SNR_SCALABLE 3
24 #define PROFILE_MPEG2_MAIN 4
25 #define PROFILE_MPEG2_SIMPLE 5
26 #define PROFILE_MPEG2_422 (0x80 + 2)
27 #define PROFILE_MPEG2_MULTIVIEW (0x80 +10)
29 #define LEVEL_MPEG2_HIGH 4
30 #define LEVEL_MPEG2_HIGH_1440 6
31 #define LEVEL_MPEG2_MAIN 8
32 #define LEVEL_MPEG2_LOW 10