Commit bc57d09c authored by Laurent Aimar's avatar Laurent Aimar

* All: simplifications.

parent e3c06996
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ffmpeg_vdec.h: video decoder using ffmpeg library * ffmpeg_vdec.h: video decoder using ffmpeg library
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: ffmpeg.h,v 1.1 2002/04/23 23:44:36 fenrir Exp $ * $Id: ffmpeg.h,v 1.2 2002/05/12 06:51:08 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -47,11 +47,10 @@ typedef struct videodec_thread_s ...@@ -47,11 +47,10 @@ typedef struct videodec_thread_s
AVCodecContext context, *p_context; AVCodecContext context, *p_context;
AVCodec *p_codec; AVCodec *p_codec;
vout_thread_t *p_vout; vout_thread_t *p_vout;
int i_aspect;
u32 i_chroma;
char *psz_namecodec; char *psz_namecodec;
/* private */ /* private */
data_packet_t *p_data; mtime_t i_pts;
byte_t *p_buff; int i_framesize;
int i_data_size; byte_t *p_framedata;
} videodec_thread_t; } videodec_thread_t;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment