[FFmpeg-cvslog] avcodec/flac_parser: print error messages in case of errors

Michael Niedermayer git at videolan.org
Sat Jan 17 02:11:44 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Jan 17 01:40:39 2015 +0100| [040e5703e6b8d1d10e389ee5ecd91711c61b8378] | committer: Michael Niedermayer

avcodec/flac_parser: print error messages in case of errors

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=040e5703e6b8d1d10e389ee5ecd91711c61b8378
---

 libavcodec/flac_parser.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/libavcodec/flac_parser.c b/libavcodec/flac_parser.c
index d16af29..ed0da55 100644
--- a/libavcodec/flac_parser.c
+++ b/libavcodec/flac_parser.c
@@ -194,6 +194,8 @@ static int find_headers_search_validate(FLACParseContext *fpc, int offset)
                                             FLAC_MAX_SEQUENTIAL_HEADERS);
         if (!(*end_handle)->link_penalty) {
             av_freep(end_handle);
+            av_log(fpc->avctx, AV_LOG_ERROR,
+                   "couldn't allocate link_penalty\n");
             return AVERROR(ENOMEM);
         }
 
@@ -712,8 +714,11 @@ static av_cold int flac_parse_init(AVCodecParserContext *c)
     /* There will generally be FLAC_MIN_HEADERS buffered in the fifo before
        it drains.  This is allocated early to avoid slow reallocation. */
     fpc->fifo_buf = av_fifo_alloc_array(FLAC_MIN_HEADERS + 3, FLAC_AVG_FRAME_SIZE);
-    if (!fpc->fifo_buf)
+    if (!fpc->fifo_buf) {
+        av_log(fpc->avctx, AV_LOG_ERROR,
+                "couldn't allocate fifo_buf\n");
         return AVERROR(ENOMEM);
+    }
     return 0;
 }
 



More information about the ffmpeg-cvslog mailing list