comparison vp56data.h @ 6795:6c7e7fdedfd3 libavcodec

Add VP56_FRAME_NONE and use VP56_FRAME_CURRENT. Fixes icc warning #188: enumerated type mixed with another type
author cehoyos
date Tue, 13 May 2008 15:56:45 +0000
parents f7cbb7733146
children c4a4495715dd
comparison
equal deleted inserted replaced
6794:ba5913f27124 6795:6c7e7fdedfd3
25 #define FFMPEG_VP56DATA_H 25 #define FFMPEG_VP56DATA_H
26 26
27 #include "libavutil/common.h" 27 #include "libavutil/common.h"
28 28
29 typedef enum { 29 typedef enum {
30 VP56_FRAME_NONE =-1,
30 VP56_FRAME_CURRENT = 0, 31 VP56_FRAME_CURRENT = 0,
31 VP56_FRAME_PREVIOUS = 1, 32 VP56_FRAME_PREVIOUS = 1,
32 VP56_FRAME_GOLDEN = 2, 33 VP56_FRAME_GOLDEN = 2,
33 VP56_FRAME_GOLDEN2 = 3, 34 VP56_FRAME_GOLDEN2 = 3,
34 VP56_FRAME_UNUSED = 4, 35 VP56_FRAME_UNUSED = 4,