summaryrefslogtreecommitdiff
path: root/libavcodec/cavs.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-05 18:31:34 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-05-05 18:31:34 +0000
commit20c11e4cee9934069d3e85071f5ba70b1a0830f1 (patch)
tree3376be418532f0aa04ea7f9b502d5e09b7d0c19b /libavcodec/cavs.c
parent95dca03f7770da949777468c9e8fde266633ce36 (diff)
avoid a clash between two definitions of SEQ_START_CODE
Originally committed as revision 8903 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavs.c')
-rw-r--r--libavcodec/cavs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c
index 4672635d7c..f4f310a406 100644
--- a/libavcodec/cavs.c
+++ b/libavcodec/cavs.c
@@ -1352,7 +1352,7 @@ static int cavs_decode_frame(AVCodecContext * avctx,void *data, int *data_size,
return FFMAX(0, buf_ptr - buf - s->parse_context.last_index);
input_size = (buf_end - buf_ptr)*8;
switch(stc) {
- case SEQ_START_CODE:
+ case CAVS_START_CODE:
init_get_bits(&s->gb, buf_ptr, input_size);
decode_seq_header(h);
break;