[FFmpeg-cvslog] r13036 - in trunk/libavcodec: flac.c flac.h

jbr subversion
Fri May 2 23:34:34 CEST 2008


Author: jbr
Date: Fri May  2 23:34:34 2008
New Revision: 13036

Log:
share streaminfo parsing function

Modified:
   trunk/libavcodec/flac.c
   trunk/libavcodec/flac.h

Modified: trunk/libavcodec/flac.c
==============================================================================
--- trunk/libavcodec/flac.c	(original)
+++ trunk/libavcodec/flac.c	Fri May  2 23:34:34 2008
@@ -94,7 +94,6 @@ static int64_t get_utf8(GetBitContext *g
     return val;
 }
 
-static void metadata_streaminfo(AVCodecContext *avctx, FLACContext *s, const uint8_t *buffer);
 static void allocate_buffers(FLACContext *s);
 static int metadata_parse(FLACContext *s);
 
@@ -107,7 +106,7 @@ static av_cold int flac_decode_init(AVCo
         /* initialize based on the demuxer-supplied streamdata header */
         init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size*8);
         if (avctx->extradata_size == FLAC_STREAMINFO_SIZE) {
-            metadata_streaminfo(avctx, s, avctx->extradata);
+            ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, avctx->extradata);
             allocate_buffers(s);
         } else {
             metadata_parse(s);
@@ -117,9 +116,9 @@ static av_cold int flac_decode_init(AVCo
     return 0;
 }
 
-static void dump_headers(AVCodecContext *avctx, FLACContext *s)
+static void dump_headers(AVCodecContext *avctx, FLACStreaminfo *s)
 {
-    av_log(avctx, AV_LOG_DEBUG, "  Blocksize: %d .. %d (%d)\n", s->min_blocksize, s->max_blocksize, s->blocksize);
+    av_log(avctx, AV_LOG_DEBUG, "  Blocksize: %d .. %d\n", s->min_blocksize, s->max_blocksize);
     av_log(avctx, AV_LOG_DEBUG, "  Max Framesize: %d\n", s->max_framesize);
     av_log(avctx, AV_LOG_DEBUG, "  Samplerate: %d\n", s->samplerate);
     av_log(avctx, AV_LOG_DEBUG, "  Channels: %d\n", s->channels);
@@ -143,8 +142,8 @@ static void allocate_buffers(FLACContext
     s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->max_framesize);
 }
 
-static void metadata_streaminfo(AVCodecContext *avctx, FLACContext *s,
-                                const uint8_t *buffer)
+void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s,
+                              const uint8_t *buffer)
 {
     GetBitContext gb;
     init_get_bits(&gb, buffer, FLAC_STREAMINFO_SIZE*8);
@@ -197,7 +196,7 @@ static int metadata_parse(FLACContext *s
             if (metadata_size) {
                 switch (metadata_type) {
                 case METADATA_TYPE_STREAMINFO:
-                    metadata_streaminfo(s->avctx, s, s->gb.buffer+get_bits_count(&s->gb)/8);
+                    ff_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s, s->gb.buffer+get_bits_count(&s->gb)/8);
                     streaminfo_updated = 1;
 
                 default:
@@ -573,7 +572,7 @@ static int decode_frame(FLACContext *s, 
     s->bps          = bps;
     s->decorrelation= decorrelation;
 
-//    dump_headers(s->avctx, s);
+//    dump_headers(s->avctx, (FLACStreaminfo *)s);
 
     /* subframes */
     for (i = 0; i < s->channels; i++)

Modified: trunk/libavcodec/flac.h
==============================================================================
--- trunk/libavcodec/flac.h	(original)
+++ trunk/libavcodec/flac.h	Fri May  2 23:34:34 2008
@@ -39,4 +39,17 @@
     int channels;           /**< number of channels                      */\
     int bps;                /**< bits-per-sample                         */\
 
+typedef struct FLACStreaminfo {
+    FLACSTREAMINFO
+} FLACStreaminfo;
+
+/**
+ * Parse the Streaminfo metadata block
+ * @param[out] avctx   codec context to set basic stream parameters
+ * @param[out] s       where parsed information is stored
+ * @param[in]  buffer  pointer to start of 34-byte streaminfo data
+ */
+void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s,
+                              const uint8_t *buffer);
+
 #endif /* FFMPEG_FLAC_H */




More information about the ffmpeg-cvslog mailing list