summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd_mpegpes.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-03 18:22:31 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-03 18:22:31 +0000
commit85ee329a2ea5e7e3449daf569a3bc954975e35d2 (patch)
tree8740f592a544253a6d138319de4a2e1741cfe17a /libmpcodecs/vd_mpegpes.c
parent3055e6d5140310db79f1f9042eba0561b80639ac (diff)
downloadmpv-85ee329a2ea5e7e3449daf569a3bc954975e35d2.tar.bz2
mpv-85ee329a2ea5e7e3449daf569a3bc954975e35d2.tar.xz
vd_mpegpes added
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5477 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vd_mpegpes.c')
-rw-r--r--libmpcodecs/vd_mpegpes.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/libmpcodecs/vd_mpegpes.c b/libmpcodecs/vd_mpegpes.c
new file mode 100644
index 0000000000..94a954729b
--- /dev/null
+++ b/libmpcodecs/vd_mpegpes.c
@@ -0,0 +1,50 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "config.h"
+#include "mp_msg.h"
+
+#include "vd_internal.h"
+
+static vd_info_t info =
+{
+ "MPEG 1/2 Video passthrough",
+ "mpegpes",
+ VFM_MPEGPES,
+ "A'rpi",
+ "A'rpi",
+ "for hw decoders"
+};
+
+LIBVD_EXTERN(mpegpes)
+
+//#include "libmpdemux/parse_es.h"
+
+#include "libvo/video_out.h"
+
+// to set/get/query special features/parameters
+static int control(sh_video_t *sh,int cmd,void* arg,...){
+ return CONTROL_UNKNOWN;
+}
+
+// init driver
+static int init(sh_video_t *sh){
+ return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_MPEGPES);
+}
+
+// uninit driver
+static void uninit(sh_video_t *sh){
+}
+
+// decode a frame
+static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
+ mp_image_t* mpi;
+ static vo_mpegpes_t packet;
+ mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, 0, sh->disp_w, sh->disp_h);
+ packet.data=data;
+ packet.size=len-4;
+ packet.timestamp=sh->timer*90000.0;
+ packet.id=0x1E0; //+sh_video->ds->id;
+ mpi->planes[0]=(uint8_t*)(&packet);
+ return mpi;
+}