[FFmpeg-soc] [soc]: r4307 - in als: README alsdec.c
thilo.borgmann
subversion at mplayerhq.hu
Sun May 24 21:04:21 CEST 2009
Author: thilo.borgmann
Date: Sun May 24 21:04:20 2009
New Revision: 4307
Log:
Minor changes duo to review.
Modified:
als/README
als/alsdec.c
Modified: als/README
==============================================================================
--- als/README Sun May 24 16:49:10 2009 (r4306)
+++ als/README Sun May 24 21:04:20 2009 (r4307)
@@ -6,6 +6,7 @@ Mentor: Justin Ruggles <justin.ruggles at g
This decoder is a project of the Google Summer of Code program 2009.
-Abstract: The MPEG-4 ALS codec exists quite a while. As FFmpeg lacks support for that, this project aims to include basic decoding functionality to the FFmpeg libraries.
-
+Abstract: The MPEG-4 ALS codec exists quite a while. As FFmpeg lacks
+support for that, this project aims to include basic decoding functionality
+to the FFmpeg libraries.
Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c Sun May 24 16:49:10 2009 (r4306)
+++ als/alsdec.c Sun May 24 21:04:20 2009 (r4307)
@@ -33,25 +33,28 @@ typedef struct {
} ALSDecContext;
-/** Decode an ALS frame.
+/** Decodes an ALS frame.
*/
-static int als_decode_frame(AVCodecContext *avctx,
+static av_cold int decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- AVPacket *avpkt) {
+ AVPacket *avpkt)
+{
return 0;
}
-/** Initialize the ALS decoder.
+/** Initializes the ALS decoder.
*/
-static int als_decode_init(AVCodecContext *avctx) {
+static av_cold int decode_init(AVCodecContext *avctx)
+{
return 0;
}
-/** Uninitialize the ALS decoder.
+/** Uninitializes the ALS decoder.
*/
-static int als_decode_end(AVCodecContext *avctx) {
+static av_cold int decode_end(AVCodecContext *avctx)
+{
return 0;
}
More information about the FFmpeg-soc
mailing list