summaryrefslogtreecommitdiffstats
path: root/libvo/vo_ivtv.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-22 09:45:34 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-22 09:45:34 +0000
commitfdcee83d90c415df6cb570af14073407071fb6bf (patch)
treeabdb012d32c5c53825264a45ef9e2bcb963544d1 /libvo/vo_ivtv.c
parent4cbc615ca4031ebf35ac8c44b41812b103f262f9 (diff)
downloadmpv-fdcee83d90c415df6cb570af14073407071fb6bf.tar.bz2
mpv-fdcee83d90c415df6cb570af14073407071fb6bf.tar.xz
simplified mpeg packetizer used by hw mpeg decoders/vo - first round
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19153 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_ivtv.c')
-rw-r--r--libvo/vo_ivtv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_ivtv.c b/libvo/vo_ivtv.c
index 24ecdc5724..253cffefbb 100644
--- a/libvo/vo_ivtv.c
+++ b/libvo/vo_ivtv.c
@@ -236,8 +236,8 @@ flip_page (void)
if (!pes)
return;
- send_mpeg2_pes_packet (pes->data, pes->size, pes->id,
- pes->timestamp ? pes->timestamp : vo_pts,
+ send_mpeg_pes_packet (pes->data, pes->size, pes->id,
+ pes->timestamp ? pes->timestamp : vo_pts, 2,
ivtv_write);
/* ensure flip_page() won't be called twice */