]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/resample.c
remove double check of pb->read_seek
[ffmpeg] / libavcodec / resample.c
index e427185c202952068087fbb255887b9eca432e93..c6547d8d8178f215bd1caabaf6f94a302212bfbc 100644 (file)
@@ -133,14 +133,14 @@ ReSampleContext *audio_resample_init(int output_channels, int input_channels,
 
     if ( input_channels > 2)
       {
-        av_log(NULL, AV_LOG_ERROR, "Resampling with input channels greater than 2 unsupported.");
+        av_log(NULL, AV_LOG_ERROR, "Resampling with input channels greater than 2 unsupported.\n");
         return NULL;
       }
 
     s = av_mallocz(sizeof(ReSampleContext));
     if (!s)
       {
-        av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for resample context.");
+        av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for resample context.\n");
         return NULL;
       }