]> git.sesse.net Git - vlc/commitdiff
Add missing prototypes
authorRafaël Carré <funman@videolan.org>
Tue, 3 Jun 2008 20:24:43 +0000 (22:24 +0200)
committerRafaël Carré <funman@videolan.org>
Tue, 3 Jun 2008 20:24:43 +0000 (22:24 +0200)
modules/codec/ffmpeg/avcodec.h

index 5938f08cf87d3875edefb7d9fd8ddf3a9c143c20..05bc55190ab7356a837ea31e05a91447c9f40b6c 100644 (file)
@@ -36,6 +36,18 @@ void CloseAudioEncoder( vlc_object_t * );
 int  OpenDeinterlace( vlc_object_t * );
 void CloseDeinterlace( vlc_object_t * );
 
+void InitLibavcodec( vlc_object_t *p_object );
+
+/* Video Decoder */
+int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
+                  AVCodec *p_codec, int i_codec_id, const char *psz_namecodec );
+void EndVideoDec( decoder_t *p_dec );
+
+/* Audio Decoder */
+int InitAudioDec( decoder_t *p_dec, AVCodecContext *p_context,
+                  AVCodec *p_codec, int i_codec_id, const char *psz_namecodec );
+void EndAudioDec( decoder_t *p_dec );
+
 /*****************************************************************************
  * Module descriptor help strings
  *****************************************************************************/