[FFmpeg-cvslog] r21422 - trunk/libavcodec/dxva2_h264.c
fenrir
subversion
Sun Jan 24 17:40:59 CET 2010
Author: fenrir
Date: Sun Jan 24 17:40:58 2010
New Revision: 21422
Log:
Added a few missing consts in dxva_h264.
Modified:
trunk/libavcodec/dxva2_h264.c
Modified: trunk/libavcodec/dxva2_h264.c
==============================================================================
--- trunk/libavcodec/dxva2_h264.c Sun Jan 24 17:37:12 2010 (r21421)
+++ trunk/libavcodec/dxva2_h264.c Sun Jan 24 17:40:58 2010 (r21422)
@@ -182,9 +182,9 @@ static void fill_slice_short(DXVA_Slice_
static void fill_slice_long(AVCodecContext *avctx, DXVA_Slice_H264_Long *slice,
unsigned position, unsigned size)
{
- H264Context *h = avctx->priv_data; /* FIXME Can't use const because of get_bits_count */
+ const H264Context *h = avctx->priv_data;
struct dxva_context *ctx = avctx->hwaccel_context;
- MpegEncContext *s = &h->s;
+ const MpegEncContext *s = &h->s;
unsigned list;
memset(slice, 0, sizeof(*slice));
@@ -260,8 +260,8 @@ static int commit_bitstream_and_slice_bu
DXVA2_DecodeBufferDesc *bs,
DXVA2_DecodeBufferDesc *sc)
{
- H264Context *h = avctx->priv_data;
- MpegEncContext *s = &h->s;
+ const H264Context *h = avctx->priv_data;
+ const MpegEncContext *s = &h->s;
const unsigned mb_count = s->mb_width * s->mb_height;
struct dxva_context *ctx = avctx->hwaccel_context;
const Picture *current_picture = h->s.current_picture_ptr;
@@ -381,7 +381,7 @@ static int start_frame(AVCodecContext *a
static int decode_slice(AVCodecContext *avctx,
const uint8_t *buffer, uint32_t size)
{
- H264Context *h = avctx->priv_data; /* FIXME Can't use const because of get_bits_count */
+ const H264Context *h = avctx->priv_data;
struct dxva_context *ctx = avctx->hwaccel_context;
const Picture *current_picture = h->s.current_picture_ptr;
struct dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
More information about the ffmpeg-cvslog
mailing list