]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/decode.h
lavc/amrwbdec: Output silence for frames marked as corrupt.
[ffmpeg] / libavcodec / decode.h
index 4a76d7a852799e4927fc2fcd2d367eaed2a51364..c3e0e82f4cdacc36c4bdd124022349c62b2b74ea 100644 (file)
@@ -1,20 +1,20 @@
 /*
  * generic decoding-related code
  *
- * This file is part of Libav.
+ * This file is part of FFmpeg.
  *
- * Libav is free software; you can redistribute it and/or
+ * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
- * Libav is distributed in the hope that it will be useful,
+ * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with Libav; if not, write to the Free Software
+ * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 
 /**
  * This struct stores per-frame lavc-internal data and is attached to it via
- * opaque_ref.
+ * private_ref.
  */
 typedef struct FrameDecodeData {
-    /**
-     * The original user-set opaque_ref.
-     */
-    AVBufferRef *user_opaque_ref;
-
     /**
      * The callback to perform some delayed processing on the frame right
      * before it is returned to the caller.
@@ -81,4 +76,6 @@ void ff_decode_bsfs_uninit(AVCodecContext *avctx);
 int ff_decode_get_hw_frames_ctx(AVCodecContext *avctx,
                                 enum AVHWDeviceType dev_type);
 
+int ff_attach_decode_data(AVFrame *frame);
+
 #endif /* AVCODEC_DECODE_H */