[FFmpeg-cvslog] avcodec/pgssubdec: rename PICTURE_SEGMENT

John Stebbins git at videolan.org
Mon Jun 30 18:10:38 CEST 2014


ffmpeg | branch: master | John Stebbins <stebbins at jetheaddev.com> | Wed Jun 18 13:38:36 2014 -0700| [376f353e3d76678944c33e5caac0052a78c0ccbe] | committer: Michael Niedermayer

avcodec/pgssubdec: rename PICTURE_SEGMENT

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=376f353e3d76678944c33e5caac0052a78c0ccbe
---

 libavcodec/pgssubdec.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/pgssubdec.c b/libavcodec/pgssubdec.c
index df612de..7d1039a 100644
--- a/libavcodec/pgssubdec.c
+++ b/libavcodec/pgssubdec.c
@@ -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:



More information about the ffmpeg-cvslog mailing list