[FFmpeg-cvslog] r11723 - trunk/libavcodec/dnxhddec.c

michael subversion
Fri Feb 1 05:11:07 CET 2008


Author: michael
Date: Fri Feb  1 05:11:06 2008
New Revision: 11723

Log:
const


Modified:
   trunk/libavcodec/dnxhddec.c

Modified: trunk/libavcodec/dnxhddec.c
==============================================================================
--- trunk/libavcodec/dnxhddec.c	(original)
+++ trunk/libavcodec/dnxhddec.c	Fri Feb  1 05:11:06 2008
@@ -84,7 +84,7 @@ static int dnxhd_init_vlc(DNXHDContext *
     return 0;
 }
 
-static int dnxhd_decode_header(DNXHDContext *ctx, uint8_t *buf, int buf_size, int first_field)
+static int dnxhd_decode_header(DNXHDContext *ctx, const uint8_t *buf, int buf_size, int first_field)
 {
     static const uint8_t header_prefix[] = { 0x00, 0x00, 0x02, 0x80, 0x01 };
     int i;
@@ -263,7 +263,7 @@ static int dnxhd_decode_macroblock(DNXHD
     return 0;
 }
 
-static int dnxhd_decode_macroblocks(DNXHDContext *ctx, uint8_t *buf, int buf_size)
+static int dnxhd_decode_macroblocks(DNXHDContext *ctx, const uint8_t *buf, int buf_size)
 {
     int x, y;
     for (y = 0; y < ctx->mb_height; y++) {
@@ -281,7 +281,7 @@ static int dnxhd_decode_macroblocks(DNXH
 }
 
 static int dnxhd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
-                              uint8_t *buf, int buf_size)
+                              const uint8_t *buf, int buf_size)
 {
     DNXHDContext *ctx = avctx->priv_data;
     AVFrame *picture = data;




More information about the ffmpeg-cvslog mailing list