Commit 376f353e authored by John Stebbins's avatar John Stebbins Committed by Michael Niedermayer

avcodec/pgssubdec: rename PICTURE_SEGMENT

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ec94c52e
......@@ -37,7 +37,7 @@
enum SegmentType {
PALETTE_SEGMENT = 0x14,
PICTURE_SEGMENT = 0x15,
OBJECT_SEGMENT = 0x15,
PRESENTATION_SEGMENT = 0x16,
WINDOW_SEGMENT = 0x17,
DISPLAY_SEGMENT = 0x80,
......@@ -497,7 +497,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size,
case PALETTE_SEGMENT:
parse_palette_segment(avctx, buf, segment_length);
break;
case PICTURE_SEGMENT:
case OBJECT_SEGMENT:
parse_picture_segment(avctx, buf, segment_length);
break;
case PRESENTATION_SEGMENT:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment