search for: end_fram

Displaying 10 results from an estimated 10 matches for "end_fram".

Did you mean: end_frame
2004 Aug 06
3
Chopping off the wideband?
On Tue, Feb 18, 2003 at 06:09:43PM -0500, Jean-Marc Valin wrote: > Le mar 18/02/2003 ? 17:38, John Hayes a ?crit : > > If I encode something in ultra-wideband, can I decode it in wideband by > > chopping off bytes in every frame? > > All you have to do is use the --force-wb switch with speexdec. It will > decode as if the file were wideband, ignoring the ultra-wideband
2004 Aug 06
4
Chopping off the wideband?
...ected it would work joining different bitrate/encoding streams, but just then I tested joining an 8000Hz narrowband stream with a 16000 Hz wideband, and the output sounds pretty sane. The interface is: peexcat --title "new title" --author "new author" \ file1.spx start_frame end_frame file2.spx start_frame end_frame ... Ideally, you should be able to specify the time as hours:mins:seconds.splitseconds rather than frame numbers (by bash you can just do $(((min*60+sec)*50)) but it's tacky). I discovered the magic number 50 somewhere as being the number of speex frames per s...
2013 Jun 29
0
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...ecode(dec->mpeg12_bs, > + video_target, > + desc, > + num_buffers, > + data, > + num_bytes); And then the temporary variables can be removed, as you've done in nv84_decoder_end_frame_mpeg12() > +} > + ... > + > +struct pipe_video_decoder * > +nv84_create_decoder(struct pipe_context *context, > + enum pipe_video_profile profile, > + enum pipe_video_entrypoint entrypoint, > + enum pipe_video_chroma...
2015 Apr 09
42
[Bug 89969] New: vaDriverInit fails with gallium/nouveau driver
https://bugs.freedesktop.org/show_bug.cgi?id=89969 Bug ID: 89969 Summary: vaDriverInit fails with gallium/nouveau driver Product: Mesa Version: git Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2013 Jul 29
2
[PATCH 1/2] nv30: hook up PMPEG support via nouveau_video, enables XvMC to work
...t;chipset >= 0x98 && screen->device->chipset != 0xa0) goto vl; + if (screen->device->chipset < 0x31) + goto vl; dec = CALLOC_STRUCT(nouveau_decoder); if (!dec) @@ -577,6 +608,7 @@ nouveau_create_decoder(struct pipe_context *context, dec->base.end_frame = nouveau_decoder_end_frame; dec->base.flush = nouveau_decoder_flush; dec->screen = screen; + dec->is8274 = is8274; ret = nouveau_bo_new(dec->screen->device, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0, 1024 * 1024, NULL, &dec->cmd_bo); @@ -79...
2013 Jun 29
2
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...gt; + video_target, >> + desc, >> + num_buffers, >> + data, >> + num_bytes); > And then the temporary variables can be removed, as you've done in > nv84_decoder_end_frame_mpeg12() > >> +} >> + > ... >> + >> +struct pipe_video_decoder * >> +nv84_create_decoder(struct pipe_context *context, >> + enum pipe_video_profile profile, >> + enum pipe_video_entrypoint entrypoint, >> +...
2013 Jun 30
0
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...video_target, >>> + desc, >>> + num_buffers, >>> + data, >>> + num_bytes); >> And then the temporary variables can be removed, as you've done in >> nv84_decoder_end_frame_mpeg12() >> >>> +} >>> + >> ... >>> + >>> +struct pipe_video_decoder * >>> +nv84_create_decoder(struct pipe_context *context, >>> + enum pipe_video_profile profile, >>> + enum pipe_vide...
2013 Jun 27
4
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...der_flush(struct pipe_video_decoder *decoder) +{ +} + +static void +nv84_decoder_begin_frame_h264(struct pipe_video_decoder *decoder, + struct pipe_video_buffer *target, + struct pipe_picture_desc *picture) +{ +} + +static void +nv84_decoder_end_frame_h264(struct pipe_video_decoder *decoder, + struct pipe_video_buffer *target, + struct pipe_picture_desc *picture) +{ +} + +static void +nv84_decoder_decode_bitstream_mpeg12(struct pipe_video_decoder *decoder, +...
2013 Jun 30
0
[PATCH v2] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...der_flush(struct pipe_video_decoder *decoder) +{ +} + +static void +nv84_decoder_begin_frame_h264(struct pipe_video_decoder *decoder, + struct pipe_video_buffer *target, + struct pipe_picture_desc *picture) +{ +} + +static void +nv84_decoder_end_frame_h264(struct pipe_video_decoder *decoder, + struct pipe_video_buffer *target, + struct pipe_picture_desc *picture) +{ +} + +static void +nv84_decoder_decode_bitstream_mpeg12(struct pipe_video_decoder *decoder, +...
2013 Aug 11
10
[PATCH 00/10] Add support for MPEG2 and VC-1 on VP3/VP4 for NV98-NVAF
As it turns out, with the proprietary firmware, the VP3 and VP4 interfaces are identical. Furthermore, this is all already implemented for nvc0. So these patches (a) move the easily sharable bits of the nvc0 implementation into the nouveau directory, and then (b) implement the other parts in nv50. The non-shared parts are still largely copies, but there are some differences, not the least of which