avcodec/pgssubdec: rename PICTURE_SEGMENT

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
John Stebbins 2014-06-18 13:38:36 -07:00 committed by Michael Niedermayer
parent ec94c52e97
commit 376f353e3d

View File

@ -37,7 +37,7 @@
enum SegmentType { enum SegmentType {
PALETTE_SEGMENT = 0x14, PALETTE_SEGMENT = 0x14,
PICTURE_SEGMENT = 0x15, OBJECT_SEGMENT = 0x15,
PRESENTATION_SEGMENT = 0x16, PRESENTATION_SEGMENT = 0x16,
WINDOW_SEGMENT = 0x17, WINDOW_SEGMENT = 0x17,
DISPLAY_SEGMENT = 0x80, DISPLAY_SEGMENT = 0x80,
@ -497,7 +497,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size,
case PALETTE_SEGMENT: case PALETTE_SEGMENT:
parse_palette_segment(avctx, buf, segment_length); parse_palette_segment(avctx, buf, segment_length);
break; break;
case PICTURE_SEGMENT: case OBJECT_SEGMENT:
parse_picture_segment(avctx, buf, segment_length); parse_picture_segment(avctx, buf, segment_length);
break; break;
case PRESENTATION_SEGMENT: case PRESENTATION_SEGMENT: