diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-02 14:38:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-02 14:58:19 +0200 |
commit | 82db8ee3211014a38db6b8cae03f1c3246938eee (patch) | |
tree | acac8aa9b5b38bcbcb5c34a77f076adee3c28465 /libavformat/utils.c | |
parent | f7f5370b4b413c05f6ed848bffb85d28c5f44b9c (diff) | |
parent | fd41cb43702498948ff14ba8c284fd5c15fc729d (diff) | |
download | ffmpeg-82db8ee3211014a38db6b8cae03f1c3246938eee.tar.gz |
Merge commit 'fd41cb43702498948ff14ba8c284fd5c15fc729d'
* commit 'fd41cb43702498948ff14ba8c284fd5c15fc729d':
avconv: improve sample format negotiation for decoder request
Opus encoder using libopus
mpegts: Drop pointless casting of hex_dump_debug arguments
avformat: const correctness for av_hex_dump / av_hex_dump_log
wmadec: Adjust debug printf argument length modifier
Conflicts:
Changelog
ffmpeg.c
libavcodec/libopusdec.c
libavcodec/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index b3298f8fbd..92dc6850ab 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4146,7 +4146,8 @@ int av_get_frame_filename(char *buf, int buf_size, return -1; } -static void hex_dump_internal(void *avcl, FILE *f, int level, uint8_t *buf, int size) +static void hex_dump_internal(void *avcl, FILE *f, int level, + const uint8_t *buf, int size) { int len, i, j, c; #undef fprintf @@ -4175,12 +4176,12 @@ static void hex_dump_internal(void *avcl, FILE *f, int level, uint8_t *buf, int #undef PRINT } -void av_hex_dump(FILE *f, uint8_t *buf, int size) +void av_hex_dump(FILE *f, const uint8_t *buf, int size) { hex_dump_internal(NULL, f, 0, buf, size); } -void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size) +void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size) { hex_dump_internal(avcl, NULL, level, buf, size); } |