diff options
author | Andreas Brachold <vdr07@deltab.de> | 2008-01-02 11:08:47 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2008-01-02 11:08:47 +0000 |
commit | 6a26a396ee4aa7be91967050cdc30d5c10bfb55c (patch) | |
tree | 9cecb7516f8baa5804ea8f12a64109d9abe0fcdf /liboutput/stillimage.h | |
parent | 943932297e9f6e15119a2ff1178635b43df14cbf (diff) | |
download | vdr-plugin-image-6a26a396ee4aa7be91967050cdc30d5c10bfb55c.tar.gz vdr-plugin-image-6a26a396ee4aa7be91967050cdc30d5c10bfb55c.tar.bz2 |
- Reimplement 'Playback mode via DeviceStillPicture'
Diffstat (limited to 'liboutput/stillimage.h')
-rw-r--r-- | liboutput/stillimage.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/liboutput/stillimage.h b/liboutput/stillimage.h index 35abae1..1ca6cd3 100644 --- a/liboutput/stillimage.h +++ b/liboutput/stillimage.h @@ -1,24 +1,23 @@ -/*************************************************************************** - * stillimage.h - * (C) Copyright 2004 Andreas Brachold <anbr at users.berlios.de> - * Created: Thu Aug 5 2004 - * - ****************************************************************************/ - /* - * This program 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. + * Image plugin to VDR (C++) + * + * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de> + * Created: Thu Aug 5 2004 + * + * This code 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. * - * This program 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 Library General Public License for more details. + * This code 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 this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Or, point your browser to http://www.gnu.org/copyleft/gpl.html */ #ifndef STILLIMAGE_H @@ -36,12 +35,13 @@ class cStillImage cStillImagePlayer *player; volatile bool m_bEncodeRequired; + bool m_bUseDeviceStillPicture; protected: virtual void Action(void); void BuildPesPacket(const unsigned char *data, int len, int timestamp); public: - cStillImage(cStillImagePlayer *); + cStillImage(cStillImagePlayer *,bool bUseDeviceStillPicture); virtual ~cStillImage(); void Stop(); |