You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/decode: move the ff_decode_frame_props() prototype to the proper header
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -64,6 +64,11 @@ typedef struct FrameDecodeData {
|
|||||||
*/
|
*/
|
||||||
int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt);
|
int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set various frame properties from the codec context / packet data.
|
||||||
|
*/
|
||||||
|
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called during avcodec_open2() to initialize avctx->internal->bsf.
|
* Called during avcodec_open2() to initialize avctx->internal->bsf.
|
||||||
* The bsf should be freed with av_bsf_free().
|
* The bsf should be freed with av_bsf_free().
|
||||||
|
@@ -353,11 +353,6 @@ int ff_side_data_update_matrix_encoding(AVFrame *frame,
|
|||||||
*/
|
*/
|
||||||
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt);
|
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt);
|
||||||
|
|
||||||
/**
|
|
||||||
* Set various frame properties from the codec context / packet data.
|
|
||||||
*/
|
|
||||||
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a CPB properties side data to an encoding context.
|
* Add a CPB properties side data to an encoding context.
|
||||||
*/
|
*/
|
||||||
|
@@ -32,6 +32,7 @@
|
|||||||
#include "libavutil/imgutils.h"
|
#include "libavutil/imgutils.h"
|
||||||
#include "libavutil/intreadwrite.h"
|
#include "libavutil/intreadwrite.h"
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
|
#include "decode.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "libvpx.h"
|
#include "libvpx.h"
|
||||||
#include "profiles.h"
|
#include "profiles.h"
|
||||||
|
@@ -34,6 +34,7 @@
|
|||||||
#include <stdatomic.h>
|
#include <stdatomic.h>
|
||||||
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
|
#include "decode.h"
|
||||||
#include "hwconfig.h"
|
#include "hwconfig.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "libavutil/avassert.h"
|
#include "libavutil/avassert.h"
|
||||||
|
@@ -36,6 +36,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
|
#include "decode.h"
|
||||||
#include "bytestream.h"
|
#include "bytestream.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
|
@@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "bswapdsp.h"
|
#include "bswapdsp.h"
|
||||||
|
#include "decode.h"
|
||||||
#include "get_bits.h"
|
#include "get_bits.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "raw.h"
|
#include "raw.h"
|
||||||
|
Reference in New Issue
Block a user