mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 18:36:09 +00:00
d3f32cba32
Until now (and in mplayer traditionally), avi timestamps were handled with a timestamp FIFO. AVI timestamps are essentially just strictly increasing frame numbers and are not reordered like normal timestamps. Limiting the FIFO is required because frames can be dropped. To make it worse, frame dropping can't be distinguished from the decoder not returning output due to increasing the buffering required for B-frames. ("Measuring" the buffering at playback start seems like an interesting idea, but won't work as the buffering could be increased mid-playback.) Another problem are skipped frames (packets with data, but which do not contain a video frame). Besides dropped and skipped frames, there is the problem that we can't always know the delay. External decoders like MMAL are not going to tell us. (And later perhaps others, like direct VideoToolbox usage.) In general, this works not-well enough that I prefer the solution of passing through AVI timestamps as DTS. This is slightly incorrect, because most decoders treat DTS as mpeg-style timestamps, which already include a b-frame delay, and thus will be shifted by a few frames. This means there will be a problem with A/V sync in some situations. Note that the FFmpeg AVI demuxer shifts timestamps by an additional amount (which increases after the first seek!?!?), which makes the situation worse. It works well with VfW-muxed Matroska files, though. On RPI, the first X timestamps are broken until the MMAL decoder "locks on".
52 lines
1.6 KiB
C
52 lines
1.6 KiB
C
/*
|
|
* This file is part of mpv.
|
|
*
|
|
* mpv is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* mpv 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MPLAYER_VD_H
|
|
#define MPLAYER_VD_H
|
|
|
|
#include "video/mp_image.h"
|
|
#include "demux/stheader.h"
|
|
#include "dec_video.h"
|
|
|
|
struct demux_packet;
|
|
struct mp_decoder_list;
|
|
|
|
/* interface of video decoder drivers */
|
|
typedef struct vd_functions
|
|
{
|
|
const char *name;
|
|
void (*add_decoders)(struct mp_decoder_list *list);
|
|
int (*init)(struct dec_video *vd, const char *decoder);
|
|
void (*uninit)(struct dec_video *vd);
|
|
int (*control)(struct dec_video *vd, int cmd, void *arg);
|
|
struct mp_image *(*decode)(struct dec_video *vd, struct demux_packet *pkt,
|
|
int flags);
|
|
} vd_functions_t;
|
|
|
|
// NULL terminated array of all drivers
|
|
extern const vd_functions_t *const mpcodecs_vd_drivers[];
|
|
|
|
enum vd_ctrl {
|
|
VDCTRL_RESET = 1, // reset decode state after seeking
|
|
VDCTRL_FORCE_HWDEC_FALLBACK, // force software decoding fallback
|
|
VDCTRL_GET_HWDEC,
|
|
VDCTRL_REINIT,
|
|
VDCTRL_GET_BFRAMES,
|
|
};
|
|
|
|
#endif /* MPLAYER_VD_H */
|