mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/mpegvideo: Move decoder-only stuff to a new header
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
746e7102be
commit
965cfc6684
@ -24,7 +24,7 @@
|
||||
|
||||
#include "dxva2_internal.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
|
||||
#define MAX_SLICES 1024
|
||||
struct dxva2_picture_context {
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "dxva2_internal.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "vc1.h"
|
||||
#include "vc1data.h"
|
||||
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "mpeg_er.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "h261.h"
|
||||
#include "internal.h"
|
||||
|
||||
|
@ -45,6 +45,7 @@
|
||||
#endif
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "msmpeg4dec.h"
|
||||
#include "qpeldsp.h"
|
||||
#include "thread.h"
|
||||
|
@ -47,6 +47,7 @@
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodata.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "profiles.h"
|
||||
#include "startcode.h"
|
||||
#include "thread.h"
|
||||
|
@ -32,6 +32,7 @@
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodata.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "mpeg4video.h"
|
||||
#include "mpeg4videodata.h"
|
||||
#include "mpeg4videodec.h"
|
||||
|
@ -44,7 +44,6 @@
|
||||
#include "mpegpicture.h"
|
||||
#include "mpegvideodsp.h"
|
||||
#include "mpegvideoencdsp.h"
|
||||
#include "mpegvideodata.h"
|
||||
#include "pixblockdsp.h"
|
||||
#include "put_bits.h"
|
||||
#include "ratecontrol.h"
|
||||
@ -586,31 +585,13 @@ int ff_mpv_init_context_frame(MpegEncContext *s);
|
||||
*/
|
||||
void ff_mpv_free_context_frame(MpegEncContext *s);
|
||||
|
||||
int ff_mpv_common_frame_size_change(MpegEncContext *s);
|
||||
void ff_mpv_common_end(MpegEncContext *s);
|
||||
|
||||
/**
|
||||
* Initialize the given MpegEncContext for decoding.
|
||||
* the changed fields will not depend upon
|
||||
* the prior state of the MpegEncContext.
|
||||
*/
|
||||
void ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx);
|
||||
void ff_mpv_reconstruct_mb(MpegEncContext *s, int16_t block[12][64]);
|
||||
void ff_mpv_report_decode_progress(MpegEncContext *s);
|
||||
|
||||
int ff_mpv_frame_start(MpegEncContext *s, AVCodecContext *avctx);
|
||||
void ff_mpv_frame_end(MpegEncContext *s);
|
||||
|
||||
void ff_clean_intra_table_entries(MpegEncContext *s);
|
||||
void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h);
|
||||
void ff_mpeg_flush(AVCodecContext *avctx);
|
||||
|
||||
void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict);
|
||||
|
||||
int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type);
|
||||
|
||||
int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src);
|
||||
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src);
|
||||
void ff_set_qscale(MpegEncContext * s, int qscale);
|
||||
|
||||
void ff_mpv_idct_init(MpegEncContext *s);
|
||||
@ -638,13 +619,4 @@ static inline void ff_update_block_index(MpegEncContext *s){
|
||||
s->dest[2]+= (2 >> s->chroma_x_shift) * block_size;
|
||||
}
|
||||
|
||||
static inline int mpeg_get_qscale(MpegEncContext *s)
|
||||
{
|
||||
int qscale = get_bits(&s->gb, 5);
|
||||
if (s->q_scale_type)
|
||||
return ff_mpeg2_non_linear_qscale[qscale];
|
||||
else
|
||||
return qscale << 1;
|
||||
}
|
||||
|
||||
#endif /* AVCODEC_MPEGVIDEO_H */
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "internal.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "threadframe.h"
|
||||
|
||||
void ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx)
|
||||
|
67
libavcodec/mpegvideodec.h
Normal file
67
libavcodec/mpegvideodec.h
Normal file
@ -0,0 +1,67 @@
|
||||
/*
|
||||
* MPEGVideo decoders header
|
||||
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
||||
* Copyright (c) 2002-2004 Michael Niedermayer
|
||||
*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* 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 FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* mpegvideo decoder header.
|
||||
*/
|
||||
|
||||
#ifndef AVCODEC_MPEGVIDEODEC_H
|
||||
#define AVCODEC_MPEGVIDEODEC_H
|
||||
|
||||
#include "libavutil/frame.h"
|
||||
#include "avcodec.h"
|
||||
#include "get_bits.h"
|
||||
#include "mpegpicture.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodata.h"
|
||||
|
||||
/**
|
||||
* Initialize the given MpegEncContext for decoding.
|
||||
* the changed fields will not depend upon
|
||||
* the prior state of the MpegEncContext.
|
||||
*/
|
||||
void ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx);
|
||||
|
||||
int ff_mpv_common_frame_size_change(MpegEncContext *s);
|
||||
|
||||
int ff_mpv_frame_start(MpegEncContext *s, AVCodecContext *avctx);
|
||||
void ff_mpv_report_decode_progress(MpegEncContext *s);
|
||||
void ff_mpv_frame_end(MpegEncContext *s);
|
||||
|
||||
int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type);
|
||||
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src);
|
||||
void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h);
|
||||
void ff_mpeg_flush(AVCodecContext *avctx);
|
||||
|
||||
void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict);
|
||||
|
||||
static inline int mpeg_get_qscale(MpegEncContext *s)
|
||||
{
|
||||
int qscale = get_bits(&s->gb, 5);
|
||||
if (s->q_scale_type)
|
||||
return ff_mpeg2_non_linear_qscale[qscale];
|
||||
else
|
||||
return qscale << 1;
|
||||
}
|
||||
|
||||
#endif /* AVCODEC_MPEGVIDEODEC_H */
|
@ -27,6 +27,7 @@
|
||||
#include "error_resilience.h"
|
||||
#include "internal.h"
|
||||
#include "mpeg_er.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "msmpeg4dec.h"
|
||||
#include "qpeldsp.h"
|
||||
#include "vc1.h"
|
||||
|
@ -39,6 +39,7 @@
|
||||
#include "mpeg_er.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "mpeg4video.h"
|
||||
#include "mpegvideodata.h"
|
||||
#include "rv10dec.h"
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "internal.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "golomb.h"
|
||||
|
||||
#include "rv34.h"
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include "error_resilience.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "golomb.h"
|
||||
#include "internal.h"
|
||||
#include "mathops.h"
|
||||
|
@ -32,6 +32,7 @@
|
||||
#include "internal.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "golomb.h"
|
||||
|
||||
#include "rv34.h"
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "hwconfig.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "vaapi_decode.h"
|
||||
|
||||
/** Reconstruct bitstream f_code */
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "hwconfig.h"
|
||||
#include "mpeg4videodec.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "vaapi_decode.h"
|
||||
|
||||
/** Reconstruct bitstream intra_dc_vlc_thr */
|
||||
|
@ -21,6 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "hwconfig.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "vaapi_decode.h"
|
||||
#include "vc1.h"
|
||||
#include "vc1data.h"
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include "avcodec.h"
|
||||
#include "mpegutils.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "msmpeg4data.h"
|
||||
#include "unary.h"
|
||||
#include "vc1.h"
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include "internal.h"
|
||||
#include "mpeg_er.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "msmpeg4data.h"
|
||||
#include "msmpeg4dec.h"
|
||||
#include "profiles.h"
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "avcodec.h"
|
||||
#include "decode.h"
|
||||
#include "internal.h"
|
||||
#include "mpegvideodec.h"
|
||||
#include "vc1.h"
|
||||
#include "vdpau.h"
|
||||
#include "vdpau_internal.h"
|
||||
|
Loading…
Reference in New Issue
Block a user