]> git.sesse.net Git - ffmpeg/commitdiff
lavc: check that extended_data is properly set in avcodec_encode_audio2().
authorAnton Khirnov <anton@khirnov.net>
Mon, 7 May 2012 14:56:20 +0000 (16:56 +0200)
committerAnton Khirnov <anton@khirnov.net>
Wed, 9 May 2012 15:47:11 +0000 (17:47 +0200)
libavcodec/utils.c

index 9631c99899a78777ec283686339eb9d2de1de686..9ec4a9e8484568cb2fb001c3b2fb7d0d395a9769 100644 (file)
@@ -908,6 +908,7 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
                                               const AVFrame *frame,
                                               int *got_packet_ptr)
 {
+    AVFrame tmp;
     AVFrame *padded_frame = NULL;
     int ret;
     int user_packet = !!avpkt->data;
@@ -920,6 +921,22 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
         return 0;
     }
 
+    /* ensure that extended_data is properly set */
+    if (frame && !frame->extended_data) {
+        if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
+            avctx->channels > AV_NUM_DATA_POINTERS) {
+            av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
+                   "with more than %d channels, but extended_data is not set.\n",
+                   AV_NUM_DATA_POINTERS);
+            return AVERROR(EINVAL);
+        }
+        av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
+
+        tmp = *frame;
+        tmp.extended_data = tmp.data;
+        frame = &tmp;
+    }
+
     /* check for valid frame size */
     if (frame) {
         if (avctx->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) {