1
mirror of https://github.com/mpv-player/mpv synced 2024-07-11 23:47:56 +02:00

demux: remove video_read_properties

This commit is contained in:
wm4 2013-07-08 00:39:29 +02:00
parent c4f33d784a
commit 90813f3402
3 changed files with 13 additions and 23 deletions

View File

@ -2357,10 +2357,6 @@ int reinit_video_chain(struct MPContext *mpctx)
goto no_video; goto no_video;
} }
if (!video_read_properties(mpctx->sh_video)) {
mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Video: Cannot read properties.\n");
goto err_out;
} else {
mp_tmsg(MSGT_CPLAYER, MSGL_V, "[V] filefmt:%d fourcc:0x%X " mp_tmsg(MSGT_CPLAYER, MSGL_V, "[V] filefmt:%d fourcc:0x%X "
"size:%dx%d fps:%5.3f ftime:=%6.4f\n", "size:%dx%d fps:%5.3f ftime:=%6.4f\n",
mpctx->master_demuxer->file_format, mpctx->sh_video->format, mpctx->master_demuxer->file_format, mpctx->sh_video->format,
@ -2376,7 +2372,6 @@ int reinit_video_chain(struct MPContext *mpctx)
mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "FPS not specified in the " mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "FPS not specified in the "
"header or invalid, use the -fps option.\n"); "header or invalid, use the -fps option.\n");
} }
}
double ar = -1.0; double ar = -1.0;
//================== Init VIDEO (codec & libvo) ========================== //================== Init VIDEO (codec & libvo) ==========================

View File

@ -164,7 +164,6 @@ typedef struct sh_sub {
struct sh_stream *new_sh_stream(struct demuxer *demuxer, enum stream_type type); struct sh_stream *new_sh_stream(struct demuxer *demuxer, enum stream_type type);
// video.c: // video.c:
int video_read_properties(struct sh_video *sh_video);
int video_read_frame(struct sh_video *sh_video, float *frame_time_ptr, int video_read_frame(struct sh_video *sh_video, float *frame_time_ptr,
unsigned char **start, int force_fps); unsigned char **start, int force_fps);

View File

@ -33,10 +33,6 @@
#include "demux.h" #include "demux.h"
#include "stheader.h" #include "stheader.h"
int video_read_properties(sh_video_t *sh_video){
return 1;
}
int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps){ int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps){
demux_stream_t *d_video=sh_video->ds; demux_stream_t *d_video=sh_video->ds;
demuxer_t *demuxer=d_video->demuxer; demuxer_t *demuxer=d_video->demuxer;