diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2010-04-10 19:59:39 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2010-04-10 19:59:39 +0200 |
commit | 6dd45260786a440522e5a76bc1d1d022626c1106 (patch) | |
tree | 247baec8611474430daac267a43b0e94fdc3fc09 /dxr3device.c | |
parent | 204fb2ed85f9c7ea1ff046cb13206652cfde7fd2 (diff) | |
download | vdr-plugin-dxr3-6dd45260786a440522e5a76bc1d1d022626c1106.tar.gz vdr-plugin-dxr3-6dd45260786a440522e5a76bc1d1d022626c1106.tar.bz2 |
rename packet to frame in comments
Diffstat (limited to 'dxr3device.c')
-rw-r--r-- | dxr3device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dxr3device.c b/dxr3device.c index fd61dbc..68f1a33 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -233,7 +233,7 @@ int cDxr3Device::PlayVideo(const uchar *Data, int Length) cDxr3PesFrame frame; if (!frame.parse(Data, Length)) { - // if parsing failed, ignore packet + // if parsing failed, ignore frame return Length; } @@ -268,7 +268,7 @@ int cDxr3Device::PlayAudio(const uchar *Data, int Length, uchar Id) cDxr3PesFrame frame; if (!frame.parse(Data, Length)) { - // if parsing failed, ignore packet + // if parsing failed, ignore frame return Length; } |