Mercurial > mplayer.hg
view libmpdemux/muxer.c @ 13610:b79ee5bf2c9e
Sync with GomGom's patch-12 version.
updated copyright
bvhq options added (xvid 1.1+ api4.1)
psnr handling moved in separate functions
proper free() on uninit
printf -> mp_msg
capability to flush delayed frames
Changes by me (iive)
support for flushing delayed frames at the end
suppressed cosmetics and new aspect code changes
author | iive |
---|---|
date | Mon, 11 Oct 2004 15:48:18 +0000 |
parents | 0db4a3a5b01d |
children | 70c446099f40 |
line wrap: on
line source
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <inttypes.h> #include <unistd.h> #include "config.h" #include "../version.h" #include "aviheader.h" #include "ms_hdr.h" #include "muxer.h" muxer_t *muxer_new_muxer(int type,FILE *f){ muxer_t* muxer=malloc(sizeof(muxer_t)); memset(muxer,0,sizeof(muxer_t)); muxer->file = f; switch (type) { case MUXER_TYPE_MPEG: muxer_init_muxer_mpeg(muxer); break; case MUXER_TYPE_RAWVIDEO: muxer_init_muxer_rawvideo(muxer); break; case MUXER_TYPE_AVI: default: muxer_init_muxer_avi(muxer); } return muxer; }