diff options
author | Max Kellermann <max@duempel.org> | 2013-10-19 17:15:17 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-19 17:15:17 +0200 |
commit | 1434e5a22e82b4176c24c536a91eefa183b78516 (patch) | |
tree | 64f2fa13494de041b1583c5c9d98d36f04447c7d /src/decoder/FfmpegDecoderPlugin.cxx | |
parent | 9acc1e1e97ff75e681ef5527f512e57917c617f3 (diff) | |
download | mpd-1434e5a22e82b4176c24c536a91eefa183b78516.tar.gz mpd-1434e5a22e82b4176c24c536a91eefa183b78516.tar.xz mpd-1434e5a22e82b4176c24c536a91eefa183b78516.zip |
decoder/gme,input/curl,...: use static buffers instead of g_strdup_printf()
Diffstat (limited to 'src/decoder/FfmpegDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/FfmpegDecoderPlugin.cxx | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/src/decoder/FfmpegDecoderPlugin.cxx b/src/decoder/FfmpegDecoderPlugin.cxx index 646b8f974..5ad01c675 100644 --- a/src/decoder/FfmpegDecoderPlugin.cxx +++ b/src/decoder/FfmpegDecoderPlugin.cxx @@ -31,8 +31,6 @@ #include "util/Domain.hxx" #include "LogV.hxx" -#include <glib.h> - #include <assert.h> #include <stdio.h> #include <unistd.h> @@ -84,10 +82,11 @@ mpd_ffmpeg_log_callback(gcc_unused void *ptr, int level, cls = *(const AVClass *const*)ptr; if (cls != NULL) { - char *domain = g_strconcat(ffmpeg_domain.GetName(), "/", cls->item_name(ptr), NULL); + char domain[64]; + snprintf(domain, sizeof(domain), "%s/%s", + ffmpeg_domain.GetName(), cls->item_name(ptr)); const Domain d(domain); LogFormatV(d, import_ffmpeg_level(level), fmt, vl); - g_free(domain); } } @@ -351,12 +350,10 @@ ffmpeg_probe(struct decoder *decoder, struct input_stream *is) Error error; - unsigned char *buffer = (unsigned char *)g_malloc(BUFFER_SIZE); + unsigned char buffer[BUFFER_SIZE]; size_t nbytes = decoder_read(decoder, is, buffer, BUFFER_SIZE); - if (nbytes <= PADDING || !is->LockSeek(0, SEEK_SET, error)) { - g_free(buffer); - return NULL; - } + if (nbytes <= PADDING || !is->LockSeek(0, SEEK_SET, error)) + return nullptr; /* some ffmpeg parsers (e.g. ac3_parser.c) read a few bytes beyond the declared buffer limit, which makes valgrind @@ -369,10 +366,7 @@ ffmpeg_probe(struct decoder *decoder, struct input_stream *is) avpd.buf_size = nbytes; avpd.filename = is->uri.c_str(); - AVInputFormat *format = av_probe_input_format(&avpd, true); - g_free(buffer); - - return format; + return av_probe_input_format(&avpd, true); } static void |