]> git.sesse.net Git - ffmpeg/commitdiff
lavc: add format field to AVFrame
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sun, 1 May 2011 12:10:20 +0000 (14:10 +0200)
committerAnton Khirnov <anton@khirnov.net>
Sun, 25 Dec 2011 15:18:57 +0000 (16:18 +0100)
The format is a per-frame property, having it in AVFrame simplify the
operation of extraction of that information, since avoids the need to
access the codec/stream context.

libavcodec/avcodec.h
libavcodec/pthread.c
libavcodec/utils.c

index 0204af7df02e4042d3303582abd5ec2cea598644..4f24f729ac12470f19ab163aa830d4f97d928704 100644 (file)
@@ -1272,6 +1272,15 @@ typedef struct AVFrame {
      * - decoding: Read by user.
      */
     int width, height;
+
+    /**
+     * format of the frame, -1 if unknown or unset
+     * Values correspond to enum PixelFormat for video frames,
+     * enum AVSampleFormat for audio)
+     * - encoding: unused
+     * - decoding: Read by user.
+     */
+    int format;
 } AVFrame;
 
 struct AVCodecInternal;
index 1ec2d1a1f93b9422ed5859772d8c24ee981d4faf..a44500b0361adedfb468d70d9a043df1001fbfc4 100644 (file)
@@ -602,6 +602,7 @@ int ff_thread_decode_frame(AVCodecContext *avctx,
         picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
         picture->width  = avctx->width;
         picture->height = avctx->height;
+        picture->format = avctx->pix_fmt;
 
         /*
          * A later call with avkpt->size == 0 may loop over all threads,
index 74932ed71d86c4080ef2d948e986928dea82fd53..a88d1a72296a29bd782923fd6819c1d60a140abb 100644 (file)
@@ -585,6 +585,7 @@ void avcodec_get_frame_defaults(AVFrame *pic){
     pic->pts= AV_NOPTS_VALUE;
     pic->key_frame= 1;
     pic->sample_aspect_ratio = (AVRational){0, 1};
+    pic->format = -1;           /* unknown */
 }
 
 AVFrame *avcodec_alloc_frame(void){
@@ -862,6 +863,7 @@ int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *pi
             picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
             picture->width  = avctx->width;
             picture->height = avctx->height;
+            picture->format = avctx->pix_fmt;
         }
 
         emms_c(); //needed to avoid an emms_c() call before every return;
@@ -983,6 +985,8 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
         if (ret >= 0 && *got_frame_ptr) {
             avctx->frame_number++;
             frame->pkt_dts = avpkt->dts;
+            if (frame->format == AV_SAMPLE_FMT_NONE)
+                frame->format = avctx->sample_fmt;
         }
     }
     return ret;