1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

remove useless casts

Originally committed as revision 11317 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ivo van Poorten 2007-12-26 16:23:25 +00:00
parent 9c87b8f777
commit 9a8d731832

View File

@ -28,8 +28,8 @@ typedef struct PTXContext {
static int ptx_init(AVCodecContext *avctx) { static int ptx_init(AVCodecContext *avctx) {
PTXContext *s = avctx->priv_data; PTXContext *s = avctx->priv_data;
avcodec_get_frame_defaults((AVFrame*)&s->picture); avcodec_get_frame_defaults(&s->picture);
avctx->coded_frame= (AVFrame*)&s->picture; avctx->coded_frame= &s->picture;
s->picture.data[0] = NULL; s->picture.data[0] = NULL;
return 0; return 0;
@ -89,7 +89,7 @@ static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
buf += w*bytes_per_pixel; buf += w*bytes_per_pixel;
} }
*picture = *(AVFrame *)&s->picture; *picture = s->picture;
*data_size = sizeof(AVPicture); *data_size = sizeof(AVPicture);
return offset + w*h*bytes_per_pixel; return offset + w*h*bytes_per_pixel;