summaryrefslogtreecommitdiff
path: root/libavformat/mpegenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-09-26 01:07:24 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-09-26 01:07:24 +0200
commitddd0e23d587e3e7ae81ee8a16a079221b0232782 (patch)
tree8a9e9868c8da2bd162bb27e902ab6a29ed20e5ae /libavformat/mpegenc.c
parent851a6e2f1aee6b254dd5155a358955c19926087a (diff)
downloadffmpeg-ddd0e23d587e3e7ae81ee8a16a079221b0232782.tar.gz
avformat/mpegenc: improve field names in underflow error message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mpegenc.c')
-rw-r--r--libavformat/mpegenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c
index 6f6da5c83d..afec598af7 100644
--- a/libavformat/mpegenc.c
+++ b/libavformat/mpegenc.c
@@ -906,7 +906,7 @@ static int remove_decoded_packets(AVFormatContext *ctx, int64_t scr){
if(stream->buffer_index < pkt_desc->size ||
stream->predecode_packet == stream->premux_packet){
av_log(ctx, AV_LOG_ERROR,
- "buffer underflow i=%d bufi=%d size=%d\n",
+ "buffer underflow st=%d bufi=%d size=%d\n",
i, stream->buffer_index, pkt_desc->size);
break;
}