[FFmpeg-devel] [libav-devel] [PATCH 4/4] dds: add missing newline to log messages

Andreas Cadhalpun andreas.cadhalpun at googlemail.com
Wed Nov 11 21:58:29 CET 2015


On 11.11.2015 12:27, Vittorio Giovara wrote:
> On Wed, Nov 11, 2015 at 1:16 AM, Andreas Cadhalpun
> <andreas.cadhalpun at googlemail.com> wrote:
>> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>
>> ---
>>  libavcodec/dds.c | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/libavcodec/dds.c b/libavcodec/dds.c
>> index fe36709..4d68b33 100644
>> --- a/libavcodec/dds.c
>> +++ b/libavcodec/dds.c
>> @@ -599,14 +599,14 @@ static int dds_decode(AVCodecContext *avctx, void *data,
>>      bytestream2_init(gbc, avpkt->data, avpkt->size);
>>
>>      if (bytestream2_get_bytes_left(gbc) < 128) {
>> -        av_log(avctx, AV_LOG_ERROR, "Frame is too small (%d).",
>> +        av_log(avctx, AV_LOG_ERROR, "Frame is too small (%d).\n",
>>                 bytestream2_get_bytes_left(gbc));
>>          return AVERROR_INVALIDDATA;
>>      }
>>
>>      if (bytestream2_get_le32(gbc) != MKTAG('D', 'D', 'S', ' ') ||
>>          bytestream2_get_le32(gbc) != 124) { // header size
>> -        av_log(avctx, AV_LOG_ERROR, "Invalid DDS header.");
>> +        av_log(avctx, AV_LOG_ERROR, "Invalid DDS header.\n");
>>          return AVERROR_INVALIDDATA;
>>      }
>>
>> --
>> 2.6.2
> 
> sure

Pushed.

Best regards,
Andreas



More information about the ffmpeg-devel mailing list